$(document).ready(function(){

	browser_fix("firefox");
											
});

function browser_fix(name){  
	var agent = navigator.userAgent.toLowerCase();  
		
	if (agent.indexOf(name.toLowerCase())>-1) {  
		
		 $('#header').css("height", "172px" );
		 $('#logo').css("margin-top", "15px" );
		 $('.tobasket').css("margin-top", "15px" );

	}  

}  
