function openGrillPromo(){
	
	$.get("static/script/grillpromo.html",function(data) {		
			$("body").prepend(data);
			
			$("#grillpromo").find("iframe").load(function() {
				$(".promo").fadeIn("slow");
				$(".senf").fadeTo('slow',0.6);
			});
			
			$(".senf").mouseover(function(){
				$(this).fadeTo('slow', 1);
			});
	
			$(".senf").mouseout(function(){
				$(this).fadeTo('slow',0.7);
				
			});
			
			$(".close").click(function(e){
				e.preventDefault();
				
				$("#grillpromo-bg").fadeOut(function(){
					$(this).remove();
				});
				$(this).remove();
			});
		});
	
}



$(document).ready(function(){


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


