
if (jQuery) jQuery.noConflict();
jQuery(document).ready(function() {
	var $ = jQuery;
	
	$('a.thickbox, area.thickbox, input.thickbox, .product-box map area, a[@href$=buy-mp3], a[@href$=buy-cd]').each(function() {
		$(this).click(function(){
			var t = this.title || this.name || null;
			var a = this.href || this.alt;
			if (a.indexOf('?') != -1) {
				a += '&TB_iframe=1';
			} else {
				a += '?TB_iframe=1';
			}
			var g = this.rel || false;
			tb_show(t,a,g);
			document.getElementById('TB_closeWindowButton').innerHTML = '<strong>Continue Shopping</strong>';
			this.blur();
			return false;
		});
	});
	imgLoader = new Image();// preload image
	imgLoader.src = tb_pathToImage;
	
});
