// JavaScript Document
$(document).ready(function(){
	$(".hide").hide();	
	
	if(!$.browser.msie)
	$(".hide").css("margin-top","-5px");
		
	if($.browser.msie)
		$(".hide").css("margin","0px");
		
	if($.browser.webkit)
		$(".hide").css("margin-top","-8px");
	
	
	$("#search").click(function() {
			//$(this).fadeOut('slow', function() {
				//$("#hide").fadeIn("slow");
			//});
			
			$(this).animate({
			opacity: 0,
			left: '-=5000'
			}, 100, function() {
				$(".hide").fadeIn("slow");
			});

	});
	
}); // end of ready() function

