

$(document).ready(function()
{

 $('area').attr("alt", "Loading, Please Wait!");


$('#lasttocart').hide();

   $('area').each(function()
    { 

      
      //  getHorPos($(this).attr('coords'));
      $(this).qtip({
      
      




            
     //$(this).attr('coords')// 410,69,763,361  //upper left corner, lower right corner
       	content:
	   	  	{
		      	url: 'localcontent.php',
			    data: { sku: $(this).attr('href')},
			    prerender: false,
		      	method: 'get',
		      	
		      	 title: { 
                     text: '&nbsp;',
                      button : 'Close'
                         }
		
		      
	       	},
	      
	       	
	       	   	show: {
	       	   	 when: { event: 'click' },
	       	   
	       	   
	       	   	delay: 200
	       	   	},
   				hide: 'mouseout',
   			
   				
   				hide: {
   				 	 event: 'click',
   					fixed: true,
   					delay: 200
   			 	},


		style:
   			{ 
   			width: '100%',
   			background:'url(images/qtip_bg.png)',

  
   			height: 'auto',
   			border: 
   				{
         		width: 0.5,
         		radius: 4,
         		color: 'orange',
         		
		 		padding:'10px'
      			},

		   	tip: 'bottomMiddle',
		   	target: 'topMiddle'
	       	//name: 'cream' // Inherit from preset style
   			},
   		
   		position:
   			{
   			   target: 'mouse',
   			    
   			   adjust: {mouse: false } ,
   		
   //adjust: { mouse: false },
   		//	adjust: { x:0, y: 45 },
      		
      		corner:
      			{
         		target: 'topMiddle',
         		tooltip: 'bottomMiddle'
      			}
   			}

   			 
      });
   });

   
   });
