jQuery(function(){
  jQuery('#main-menu').superfish();
});
  
$(document).ready(function(){
  var current_page = 1;
  $('#previous-button').click(function(){
    if (current_page > 1){
      current_page--;
      $("#product-list").load("/includes/product-list.php?page=" + current_page);
    }
    return false;
  });
  
  $('#next-button').click(function(){
    $.get("/includes/product-list.php?page=" + (current_page + 1), function(data){
      if (data.length > 0){
        current_page++;
        $('#product-list').html(data);
      }
    });
    return false;
  });
    
  $('#banner-rotation').cycle({
    fx: 'fade',
    slideExpr: 'img'
  });
});

function mask(end,middle,start,subject){
var one ='mai';
var two='lto:';
var three='?Subject=';
//start,middle,end,subject;
var putogether= one+two+start+middle+end+three+subject;
document.location.href=eval('"'+putogether+'"');
window.status=putogether;
}
