$(function() {
	
	//Brochure carousel
	$("#carousel2").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		visible: 6,
		scroll: 5,
		circular: false
	});

	//Show tool tips when you mouseover the brochure icons
	tooltip();

	//Embed homepage banner
	$("#banner").flashembed(
		{
			src: '/swf/homepage_banner.swf?id=dfhgdsa',
			width: 920,
			height: 259
		}
	);

	$("#videos ul li a").click(function() {

		$("#videos ul li a").removeClass("on");
		var src = $(this).attr("href");
		$("#videoPlayer").html('<object width="250" height="188"><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="250" height="188"></embed></object>');
		$(this).addClass("on");
		return false;
		
   	});

	$("#videoPlayer").click(function() {

		if ($(this).html()=='&nbsp;') {
			$("#videoPlayer").html('<object width="250" height="188"><param name="movie" value="http://www.youtube.com/v/h-CPhUmR9pI&hl=en&fs=1&rel=0&autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/h-CPhUmR9pI&hl=en&fs=1&rel=0&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="250" height="188"></embed></object>');
			$("#videos ul li a.first").addClass("on");
		}
		return false;
		
   	});
	
});

