// JavaScript Document
$(document).ready(function() {
	$("#navigation ul li a").each(function() {
		
		if($(this).html().length > 25) {
			$(this).addClass("doubleLine");
		}		
									
	 });
	$('#mycarousel').jcarousel({
		scroll:5			
	});
	
	$("#howtomake ul li a").click(function() {

		$("#howtomake ul li a").removeClass("on");
		var src = $(this).attr("href");
		$("#video_stage").html('<object width="409" height="222"><param name="movie" value="' + src +'&hl=en&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="' + src +'&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="409" height="222"></embed></object>');
		$(this).addClass("on");
		return false;
		
   	});
	
	$("div.panel").click( function() { 
		var link;
		link = $(this).find("a")
		if (link.attr("target")=="_blank") {
			window.open(link.attr("href"));
		}
		else {
			location.href=link.attr("href");
	   }
	   return false;
	} );	 

	
});
