var navigation = { movie:"/res/swf/nav.swf", width:"760", height:"112", majorversion:"6", build:"1" };
UFO.create(navigation, "navigation");

var products_introduction = { movie:"/res/swf/product.swf", width:"580", height:"332", majorversion:"6", build:"1" };
UFO.create(products_introduction, "products_introduction");

$(function(){
		   
	$("div.subnav_holder").before("<ul id=\"subnav_links\"><li class=\"first\"><a href=\"#\" id=\"subnav_features\">Features</a></li><li><a href=\"#\" id=\"subnav_products\">Products</a></li><li class=\"last\"><a href=\"#\" id=\"subnav_injuries\">Injuries</a></li></ul>");
		   
	$("#features").hide();
	$("#injuries").hide();
	$("#subnav_products").addClass("active");
	
	$("#tab_cleanse").addClass("open");
	$("#cleanse").find("ul").show();
	$("#treat").find("ul").hide();
	$("#heal").find("ul").hide();
	$("#protect").find("ul").hide();
	$("#others").find("ul").hide();
	
	$("#subnav_features").bind("click",function(){
		$("#subnav_features").addClass("active");
		$("#subnav_products").removeClass("active");
		$("#subnav_injuries").removeClass("active");
		$("#features").fadeIn("normal");
		$("#products").hide();
  		$("#injuries").hide();
 	});
	
	$("#subnav_products").bind("click",function(){
		
		$("#subnav_features").removeClass("active");
		$("#subnav_products").addClass("active");
		$("#subnav_injuries").removeClass("active");
		
		$("#features").hide();
		$("#injuries").hide();
		
		$("#products").fadeIn("normal");
  		
 	});
		
	$("#subnav_injuries").bind("click",function(){
		$("#subnav_features").removeClass("active");
		$("#subnav_products").removeClass("active");
		$("#subnav_injuries").addClass("active");
		$("#features").hide();
		$("#products").hide();
  		$("#injuries").fadeIn("normal");
 	});
		
	// ---------- Products tabs
	
	$("#tab_cleanse").bind("click",function(){
		if($(this).is(".open")) {
			$(this).removeClass("open"); $("#cleanse").find("ul").slideUp("fast");
		} else {
			$(this).addClass("open"); $("#cleanse").find("ul").slideDown("normal");
		}
	});
	
	$("#tab_treat").bind("click",function(){
		if($(this).is(".open")) {
			$(this).removeClass("open"); $("#treat").find("ul").slideUp("fast");
		} else {
			$(this).addClass("open"); $("#treat").find("ul").slideDown("normal");
		}
	});
	
	$("#tab_heal").bind("click",function(){
		if($(this).is(".open")) {
			$(this).removeClass("open"); $("#heal").find("ul").slideUp("fast");
		} else {
			$(this).addClass("open"); $("#heal").find("ul").slideDown("normal");
		}
	});
	
	$("#tab_protect").bind("click",function(){
		if($(this).is(".open")) {
			$(this).removeClass("open"); $("#protect").find("ul").slideUp("fast");
		} else {
			$(this).addClass("open"); $("#protect").find("ul").slideDown("normal");
		}
	});
	
	$("#tab_others").bind("click",function(){
		if($(this).is(".open")) {
			$(this).removeClass("open"); $("#others").find("ul").slideUp("fast");
		} else {
			$(this).addClass("open"); $("#others").find("ul").slideDown("normal");
		}
	});
	
});
