$(document).ready(function() {
	// EXTERNAL LINKS IN NEW WINDOWS
	$("a[rel=external]").attr("target","_blank").attr("title","Will open in a new tab / window");
	
	// SEARCH BOX
	$("#q").focus(function() {
		if ($(this).val() == "Product Search") {
			$(this).val("");
		}
	}).blur(function() {
		if ($(this).val() == "") {
			$(this).val("Product Search");
		}
	});
	
	/*
	$(".qvimage").hover(function() {
		$(".quicklook",this).show();
	},function() {
		$(".quicklook",this).hide();	
	});
	*/
	
	$(".quicklook").css("cursor","pointer");
	
	$(".qvimage img.quicklook").cluetip({
		activation: "click",
		cluetipClass: "bosom",
		dropShadow: false,
		showTitle: false,
		sticky: true,
		width: "675px"
	});
});
