/*
	     +-----------------------------------------------------------------------+/*
	     +-----------------------------------------------------------------------+
		 | Project Name: The Bendy                                               |
		 +-----------------------------------------------------------------------+
		 | Copyright (c)  The Egrovesystems developers                           |
		 |                                                                       |
		 | http:www.egrovesys.com                                                |
		 |                                                                       |
		 |                                                                       |
		 +-----------------------------------------------------------------------+
		 | Project Description:                                                  |
		 |                                                                       |
		 |    Thebendy.com truly is the state of art e-commerce portal provides  |
		 |    online shopping experiences to the people to purchase the products |
		 |	  like Bags, Fashion products, Men's and Women's fashion wear.       |
		 |	  TheBendy.com has the simple checkout process and the flexible      | 
		 |	  payment and shipping methods. TheBendy.com provides the buyers, a  |
		 |	  product watchlist, email notifications on orders, order tracking   |
		 |	  features and more...                                               |
		 |                                                                       |
		 |                                                                       |
		 +-----------------------------------------------------------------------+
		 | Module created by Egrovesys                                           |
		 +-----------------------------------------------------------------------+ 
		 
 */	
$(document).ready(function() { 
				
     var parameter = "";
	 var urlpath = "";
	 $(".product_img").show();
	 $(".contentpage").hide();
	 $(".page_loading").hide();
	 
    // click category link to view the product
    $(".catClass").click(function () {	
								   
	   var product_process=$("#product_process").val();
	   if(product_process!=1)
	   {							   
			category=this.lang;	
			$("#product_id").val();
			if($(".parentli_"+category).is(':visible'))
			{
				$(".parentli_"+category).slideToggle(1000);
			}
			else
			{
				$(".parentli_"+category).slideToggle(1000);
			}
			
			parameter="&category_id="+category;		
			urlpath=HTTP_SERVER+DIR_INCLUDES+DIR_MODULES+"product.php";		
			ajaxcallmethod(urlpath,parameter);				
	   }
	   
	});	
	 
	     
   // page call method
	function ajaxcallmethod(urlpath,parameter)
	{				
		var radomno=Math.random()*1000000; 
		var parametri ="&random_no="+radomno+parameter;
		var url=urlpath;
	    	$.ajax({
			url: url,
			type: "POST",
			dataType: 'html',
			data: parametri,
			timeout: 5000,
			cache: false,
			success: function(html)
			{
			  var data=html;	
			  $(".rightpanel").html(data);	
			  $(".loadingproductimg").show();
				var main_content = $(".product_main");
				var toBeTOCced = $(".product_img", main_content);
				toBeTOCced.each(function(i) 
				{
				   var product_id=this.id;
				   $("."+product_id).hide();				  
				   setTimeout(function(){ $('#load_'+product_id).hide(); }, 1000);
				   $('#'+product_id).stop(false,true).animate({opacity: "1"}, 1000).fadeIn(1500);					   
				});	
				
			}		
		});		
	}	
		
	// content page
	 $(".click_content").click(function ()
	 {	  
	    $(".page_loading").show();
	    var pagename=this.id;
		$(".contentpage").hide();
		$(".homepage").hide();		
		$("#mid-contend-wrapper").hide();				
		setTimeout(function(){ $(".page_loading").hide(); $("#"+pagename+"page").show(); }, 1000);
	 });
	
	
	
});
