function openEssigPromo(){
	
	$.get("static/script/essigpromo.html",function(data) {		
			$("body").prepend(data);
								
			$("#essigpromo").find("iframe").load(function() {
				$(".promo").fadeIn("slow");
				$(".essig").fadeIn("slow");
			});
			
			$(".essig").mouseover(function(){
				$(this).animate({height: "130px"}, 400 );

			});
	
			$(".essig").mouseout(function(){
				$(this).animate({height: "120px"}, 400 );
			});
			
			$(".close").click(function(e){
				e.preventDefault();
				
				$("#essigpromo-bg").fadeOut(function(){
					$(this).remove();
				});
				$(this).remove();
			});
		});
}



$(document).ready(function(){

	if(self.location.href.indexOf("#essigpromo")!=-1){	
		openEssigPromo();
		
	}
});

