jQuery.noConflict();
(function($){
$(function(){
	$('.search-text').click(function(){
		$(this).next().show();
	}).blur(function(){
		$(this).next().fadeOut('slow', function(){
			$(this).hide();
		});
	});

	$('.hideselect > li').click(function(){
		$(this).parent().parent().prev().val($(this).text());
	});
        $('.navTitle').children().eq(0).addClass('noimg');
        $('.navTitle').children().eq(1).addClass('noimg');
        $('.navTitle').children().eq(2).addClass('noimg');
        $('.navTitle').children().eq(3).addClass('noimg');
        $('.navTitle').children().eq(4).addClass('noimg');
        $('.navTitle').children().eq(5).addClass('noimg');
        
        /*$('.navTitle').children().eq(2).addClass('noimg');*/
        /**
        var tochange = $('.base-title').html();
        if(tochange != '' && tochange != null && tochange != 'undefined'){
            tochange = tochange.replace(/h1/g, 'h2');
            $('.base-title a').each(function(){
                var totitle = $(this).text();
                var totext = $(this).attr('title');
                if(totext == ''){
                    totext = 'home';
                }
                tochange = tochange.replace(totitle, totext);
            });
            $('.base-title h1').append(tochange);
        }
        */
        var maxBodyHeight = Math.max(document.documentElement.clientHeight,document.body.scrollHeight);
        $('#main').height(Math.max($('#main').height(), maxBodyHeight - 120));
});
})(jQuery);

