jQuery(document).ready(function($){
	if(self.location.href.indexOf("#kikkoman")!=-1){	
		openIt();
	};
	
	$('a[href*=#kikkoman]').click(function(e){

		e.preventDefault();

		openIt();
	}); 
	 
});

openIt = function(){
		$.get("./fileadmin/tmpl/lgv-kikkoman/lgv-kikkoman.html",function(data){
			$("body").prepend(data);
		
			$(".close").click(function(e){
				e.preventDefault();
				
				$("#background").fadeOut(function(){
					$(this).remove();
				});
				$(this).remove();
			});
		});
		/*$.get("static/script/grillpromo.html",function(data) {		
			$("body").prepend(data);
			
			$("#grillpromo").find("iframe").load(function() {
				$(".promo").fadeIn("slow");
			});
			
			$(".close").click(function(e){
				e.preventDefault();
				
				$("#grillpromo-bg").fadeOut(function(){
					$(this).remove();
				});
				$(this).remove();
			});
		});*/
	}


