$(document).ready(function(){ 

	$("#contactArea").css('width', '0px');

	$("#mibera").mouseover(function () { 
 			$("#contactArea").animate({width: "422px"}, {queue:false, duration: 500}) 
            }).mouseout(function () { 
			$("#contactArea").animate({width: "0px"}, {queue:false, duration: 500})  
			}); 
        
}); 
