$(document).ready(function() {
//ClueTip
	$('ul.productList a.load-local').cluetip({
		local:true,
		cursor: 'pointer',
		clickThrough: true,
		dropShadow:false
	});

	$('#content').jScrollPane({showArrows:true, scrollbarWidth: 24, arrowSize: 6});
	//Run the script to preload images from CSS
	//$.preloadCssImages(); 
	
	$('.nav a').mouseover(function(){
		$.sound.play("http://cccbox.sitevision.com/sounds/flip.wav",{timeout:500}); // Play a sound on mouse over
	});
	
	$('#leftcol h2').mouseover(function(){
		$.sound.play("http://cccbox.sitevision.com/sounds/lighter.wav",{timeout:500}); // Play a sound on mouse over
	});
	
	// $('#creativityunfolds a').mouseover(function(){
	// 	$.sound.play("sounds/slash.wav",{timeout:500}); // Play a sound on mouse over
	// });

});		