/* Inject Product Demo video into product details page */
/* mmended by AM and LH 29/07/2009 */

if(typeof ($.AWA) == "undefined") {
	$.AWA = new Object;
}

$.AWA.InjectProductDemo = {

	showingProductDemo: false,
	href: window.location.pathname.split("product/"),
	productID: null,
		
	init: function(){

		this.productID= parseInt(this.href[1]);
		
		if ($('#imageProduct_btnShowVideo').length > 0 || $('#PC0_switchableImageProduct1_btnShowVideo').length > 0 ) {
			
			$("#imageProduct_btnShowVideo").bind("click", function(){
				
				if ($.AWA.InjectProductDemo.showingProductDemo == false) {
					$("#productdetailimage").after('<div id="awa_product_demo"><embed width="460" height="300" flashvars="videosrc=/content/videos/' + $.AWA.InjectProductDemo.productID + '.flv" wmode="transparent" quality="high" bgcolor="#fff" name="awa_product_demo_movie" id="awa_product_demo_movie" src="/player.swf" type="application/x-shockwave-flash" /></div>');
					$('#productdetailimage').hide();
					$('.product-buttons ul li:first').hide();
					$('#imageProduct_btnShowVideo').attr({
						src:'/content/images/btn-product-image.gif',
						alt:'back to product image'
					});
					$.AWA.InjectProductDemo.showingProductDemo = true;
				} else {
					$('#awa_product_demo').remove();
					$('#productdetailimage').show();
					$('.product-buttons ul li:first').show();
					$('#imageProduct_btnShowVideo').attr({
						src:'/content/images/btn-video.gif',
						alt:'watch demo video'
					});
					$.AWA.InjectProductDemo.showingProductDemo = false;
				};
				
				  return false;
			      
				}); // End bind
					
			$("#PC0_switchableImageProduct1_btnShowVideo").bind("click", function(){
				
				if ($.AWA.InjectProductDemo.showingProductDemo == false) {
					$("#productdetailimage").after('<div id="awa_product_demo"><embed width="460" height="300" flashvars="videosrc=/content/videos/' + $.AWA.InjectProductDemo.productID + '.flv" wmode="transparent" quality="high" bgcolor="#fff" name="awa_product_demo_movie" id="awa_product_demo_movie" src="/player.swf" type="application/x-shockwave-flash" /></div>');
					$('#productdetailimage').hide();
					$('.product-buttons ul li:first').hide();
					$('#PC0_switchableImageProduct1_btnShowVideo').attr({
						src:'/content/images/btn-product-image.gif',
						alt:'back to product image'
					});
					$.AWA.InjectProductDemo.showingProductDemo = true;
				} else {
					$('#awa_product_demo').remove();
					$('#productdetailimage').show();
					$('.product-buttons ul li:first').show();
					$('#PC0_switchableImageProduct1_btnShowVideo').attr({
						src:'/content/images/btn-video.gif',
						alt:'watch demo video'
					});
					$.AWA.InjectProductDemo.showingProductDemo = false;
				};
				
				  return false;
			      
				}); // End bind
	    
		} // End if length > 0
		
	} // End init
	
} // End class

$(document).ready(function(){
	$.AWA.InjectProductDemo.init();
});