// JavaScript Document
 function xajax_productnew(){
    
	$.ajax({
      url: 'admin/product/front/product_list_new.php',         
	  cache: false,         
	  dataType: 'html',             
	  type:'GET',         
	  data: {},
	  error: function(xhr) { alert('Ajax request 發生錯誤'); }, 
	  success: function(response) {$('#output').html(response);}
	  });
 }
 
 function xajax_productlist($c_id,$page){

 $.ajax({
      url: 'admin/product/front/product_list_class.php',         
	  cache: false,         
	  dataType: 'html',             
	  type:'GET',         
	  data: { c_id: $c_id,page: $page},
	  error: function(xhr) { alert('Ajax request 發生錯誤'); }, 
	  success: function(response) {$('#output').html(response);}
	  });
 
 }
 
  function xajax_productpress($p_id){

 $.ajax({
      url: 'admin/product/front/product_press.php',         
	  cache: false,         
	  dataType: 'html',             
	  type:'GET',         
	  data: { p_id: $p_id},
	  error: function(xhr) { alert('Ajax request 發生錯誤'); }, 
	  success: function(response) {$('#output').html(response);}
	  });
 
 }
 
 //**************************************圖片********************************************
 /*
 function set_position_list($target,$width,$height){
  
  for($i = 0 ; $i < $($target).length; $i++){
	
	
    if($($target+':eq('+$i+')').width()>$($target+':eq('+$i+')').height())
	{ 
	   $($target+':eq('+$i+')').addClass($width);
	}
	else
	{
	   $($target+':eq('+$i+')').addClass($height);
	}
   
   }
 }*/
