xOffset = 10;
yOffset = 10; 
jQuery(document).ready(function(){

jQuery("a.abbr").mousemove(function(e){

 	jQuery("#tooltip").css("top",(e.pageY - xOffset) + "px").css("left",(e.pageX + yOffset) + "px");

}); 

jQuery('a.abbr').hover(function(){


tabr = jQuery(this).attr('title');

jQuery('body').append('<div id="tooltip">'+tabr+'</div>');


},function(){


jQuery('#tooltip').remove();
jQuery(this).attr('title',tabr);


});
});

jQuery(function($){ 

		jQuery('.cancel').hide();
		jQuery('.product').hover(function(){
		
						jQuery(this).css('border-color','#79b629');
		
		},function(){
		
					  jQuery(this).css('border-color','#ffffff');
		
		});

	jQuery('.side_product').hover(function(){
		
						jQuery(this).css('border-color','#79b629');
		
		},function(){
		
					  jQuery(this).css('border-color','#d7d7d7');
		
		})


	jQuery('#email_tab').click(function(){
		
	 jQuery('#contact_area_enquire').hide();
	 jQuery('#contact_area_freind').show();

	
	});

	jQuery('#enquiry_tab').click(function(){

			 jQuery('#contact_area_enquire').show();
	 		 jQuery('#contact_area_freind').hide();
	})

//	jQuery('#hot_deals').click(function(){
		
//	 jQuery('#new_dealss').hide();
//	 jQuery('#deals').show();

	
//	});

//	jQuery('#new_deals').click(function(){

//			 jQuery('#new_dealss').show();
//	 		 jQuery('#deals').hide();
//	})

});