jQuery(function($){

	function check_input(){
	    if($(this).attr('value') != ''){
	        $('#searchsubmit1, #searchsubmit2').removeAttr('disabled');
	    }else{
	        $('#searchsubmit1, #searchsubmit2').attr('disabled', 'disabled');
	    }
	}

    $('.js_show').show();
    $('.js_disable').attr('disabled', 'disabled');

    $('.search_label').inFieldLabels();

    $('.search_field').keyup(check_input);
    $('.search_field').blur(check_input);

    $('body').append('<div id="loader_wrapper"><div id="loader"></div></div>');

    $('#page_top, #content, .scroll_top, .scroll, .scroll_bottom, #sub_foot, #page_bottom', '#wrapper').fadeTo(0, 0.001);
    $('#navigation, #info_bar').each(function(){
        if(!$.browser.msie){
            $(this).hide().fadeIn(1000);
            $(this).css({
                position: 'relative',
                left: '-50px'
            }).animate({
                left: '0'
            },{
                duration: 500,
                queue: false
            }).fadeIn(1500);
        }
    });
    $('#page_top, #content, .scroll_top, .scroll, .scroll_bottom, #sub_foot, #page_bottom', '#wrapper').fadeTo(500, 1);
});