$(document).ready(function () {
	Close_All();
  $('.menu_class').click(function () { Close_All(); $('.the_menuCategoryProduct').show(1000); });
  $('.close_menu').click(function () { Close_All(); });    
  
  $('.dvlistofCategory').live('click', function () { 
  	$('.dvTargetMenu' ).html('<center><img class="loadingImg" src="images/loading.gif"></center>');	
 		$.post('callajax.php', {
			mod : 'sliding',
			metode : 'merek',
			id : $(this).attr('refid') },
			function(response){ $('.dvTargetMenu' ).html(response); return false; }
		);  	
  });    

  $('.dvlistofMerek').live('click', function () { 
  	Close_All();
  	$('.dvTarget' ).html('<center><img class="loadingImg" src="images/loading.gif"></center>');	
 		$.post('callajax.php', {
			mod : 'product',
			metode : 'pilih',
			id : $(this).attr('refid') },
			function(response){ $('.dvTarget' ).html(response); return false; }
		);  	
  });   
});

function Close_All(){ $('.the_menuCategoryProduct').hide(400); }
