product_id = 0;
function jump(url, page)
{
	window.location.href = window.location.pathname +'?'+ url +'&page='+ page;
	//window.alert(window.location.pathname +'?'+ url +'&amp;page='+ page);
}
$(document).ready
(
 function()
 {
   $('LI', '#navigator').each
   (
     function()
     {
       $(this).mouseover
       (
         function()
         {
           $(this).addClass('hover');
         }
       );
       $(this).mouseout
       (
         function()
         {
           $(this).removeClass('hover');
         }
       );
     }
   );
	 $(document).contextMenu(null, {onContextMenu : function(e){window.alert('Welcome to Special Art Limited Website');}});
 }
);
function loadinfo(pid)
{
	$('#p_image').parent().block();
	$.getJSON
	(
	  'lib/lib_jewelry.php?pid='+ pid, '',
		function(sJSON)
		{
			if (sJSON.error == 0)
			{
				product_id = pid;
				$('#p_image').attr({src : sJSON.content.img, alt : sJSON.content.content, title : sJSON.content.content});
				$('#p_code').html(sJSON.content.model);
				$('#p_content').html(sJSON.content.content);
			}
			else
			{
				window.alert(sJSON.message);
			}
			$('#p_image').parent().unblock();
		}
	);
}
function goto_cart(cid, gid)
{
	window.open('addbasket.php?id='+ product_id +'&cid='+ cid +'&groupid='+ gid +'&url=jewelry.php');
}
