$(function(){
	$('.col').equalHeights();
	$('#page-normal').css('margin-bottom','0.5em');


	$('#findbtn').click(function(){
		document.productsearchform.submit();
	});
	$('#logbtn').click(function(){
		document.authform.submit();
	});
	$('#logout').click(function(){
		 document.loginform.submit();
	});

	$('.jumpmenu select').change(function(){
		$("option:selected").each(function () {
		if($(this).val() != 1){
                window.location.assign($(this).val());
				window.location.href =	$(this).val();
			}
        });

	});
	
	$('.sidebar input').focus(function(){
		$(this).css('background-color', '#191a1b');
		$(this).css('outline', '2px solid #749F1F');
		$(this).bind('mouseleave', function(){
			$(this).css('background-color', '#262626');
			$(this).css('outline', 'none');
		});
		$(this).bind('blur', function(){
			$(this).css('background-color', '#262626');
			$(this).css('outline', 'none');
		});
	});

});