jQuery(document).ready(function()
{
  jQuery("#effect_main_item ul li").click(function()
  {
    if(jQuery(this).attr("class")!="active")
    {
	    index=jQuery("#effect_main_item ul li").index(this);
	    jQuery("#effect_main_item h2").html(jQuery("#effect_item_"+index+" h2").html());
	    //jQuery("#effect_main_item .description").attr("style","display:none;");
	    jQuery("#effect_main_item .description").html(jQuery("#effect_item_"+index+" .description").html());
	    //jQuery("#effect_main_item .description").slideToggle(2000);
	    jQuery("#effect_main_item .image").fadeOut("slow",function()
	    {
	      jQuery("#effect_main_item .image").html(jQuery("#effect_item_"+index+" .image").html());
        jQuery("#effect_main_item .image").fadeIn("slow");
	    });
	    jQuery("#effect_main_item ul.navigation li").removeAttr("class");
	    var activeNavItem = jQuery("#effect_main_item ul.navigation li").get(index);
	    jQuery(activeNavItem).addClass("active");
    }
    
  });
});
