// JavaScript Document

$(document).ready(function() 
{
	$("a.thumb, img.thumb").thumbs(); // the wrapping function
	$("a.thumb img, img.thumb").thumbsImg(); // the img positioning function (optional)
	
	
	// Tool tips
	$('.productImage > a').tooltip({ 
    track: true, 
    delay: 0, 
    showURL: false, 
    showBody: " - ", 
    extraClass: "scotsToolTip", 
    fixPNG: true, 
    opacity: .5, 
    left: -120 ,
	fade: 500,
});
	
	
	
	
	
});