$(document).ready(function(){
  //$("p").text("The DOM is now loaded and can be manipulated.");
	
	// $("area").click(function() {
	// 	//alert("HEY");
	// 	myvar = this.id;
	// 	//alert(this.id);
	// 		$("div#description div").hide();
	// 		$("div#description div#text_"+myvar).show();
	// 	// 		
	// 	
	// });
	// $("area").click(function() {
	// 			myvar = this.id;
	// 		$("div#description div").hide();
	// 		$("div#description div#text_"+myvar).show();
	// 		$("div#subtitles p").text(this.title);
	// 	});
	
	// LED-test
	$(".led_more_left ul li").click(function() {
		//alert(this);
		myvar = this.id;
		title = this.title;
		$("div.leds_left").empty();
		$(".leds_left").append("<img>"); // erstelle neues Image
		$(".leds_left img").attr({ src: "/static/stories/led-test/"+myvar+".jpg", alt: "", title: "", width:"254", height:"339" });// erstelle Attribute, z Bsp. img src, alt, title etc.
		$(".led_image_desc_left h2").text(this.title);
		
		myvar = this.value;
		//alert(myvar);
		if (myvar!='') {
		$("div.iframe_left").empty();
		$(".iframe_left").append("<iframe>"); // erstelle neues Image
		$(".iframe_left iframe").attr({ src: "http://www.supashop.ch/product_snapshot.php?pid="+myvar+"&w=251", width:"251", height:"265", marginwidth:"0" ,frameborder:"0", scrolling:"no" });// erstelle Attribute, z Bsp. img src, alt, title etc.
		} 
	});

	$(".led_more_right ul li").click(function() {
		//alert(this);
		myvar = this.id;
		title = this.title;
		$("div.leds_right").empty();
		$(".leds_right").append("<img>"); // erstelle neues Image
		$(".leds_right img").attr({ src: "/static/stories/led-test/"+myvar+".jpg", alt: "", title: "", width:"254", height:"339" });// erstelle Attribute, z Bsp. img src, alt, title etc.
		$(".led_image_desc_right h2").text(this.title);
		
		myvar = this.value;
		//alert(myvar);
		if (myvar!='') {
		$("div.iframe_right").empty();
		$(".iframe_right").append("<iframe>"); // erstelle neues Image
		$(".iframe_right iframe").attr({ src: "http://www.supashop.ch/product_snapshot.php?pid="+myvar+"&w=251", width:"251", height:"265", marginwidth:"0" ,frameborder:"0", scrolling:"no" });// erstelle Attribute, z Bsp. img src, alt, title etc.
		}
	});
	
	
});


