// JavaScript Document
jQuery.preloadImages = function(){for(var i = 0; i<arguments.length; i++){jQuery('<img />').attr('src', arguments[i]);}}
$(document).ready(function()
{
	$("a[rel^='product_image']").prettyPhoto({animationSpeed:'normal',padding:40,opacity:0.35,showTitle:false,allowresize:true,counter_separator_label: ' of ',theme:'light_square'});
	$("div#column_nav a[rel^='build-your-own']").attr('href','http://www.sovereignplayequipment.co.uk/buildyourown/buildYourOwn2.1.swf').prettyPhoto({animationSpeed: 'normal',padding: 40,opacity: 0.35,showTitle: false,allowresize: false,counter_separator_label: '',theme: 'light_square'});
 	$('li.open ul').each(function(){var _pause = $(this).children().length * 100;$(this).slideDown(_pause);});
	$('div#navigation ul li').each(function(){var _subnav = $('ul', this);if (_subnav.length > 0){_subnav.width($(this).width());$(this).hover(function() {if (_subnav.queue('fx').length == 0) _subnav.slideDown(500);},function() {_subnav.slideUp(500);});}});
	$.preloadImages('/images/add_cart_item.jpg');
	$("#cart_activity").fadeIn(1000).animate({opacity: 1.0}, 2000).fadeOut(1000);
	$('div#results').append('<form method="post"><select id="sort_select" name="sort" onchange="this.form.submit();"><option value="0">Most popular</option><option value="1">Price (low to high)</option><option value="2">Price (high to low)</option></select></form>');
	$('span#sort').each(function(){var _sort_option = parseInt($(this).text());$('select#sort_select')[0].selectedIndex = _sort_option;});
	$('div.symbol').hover(function(){$('#'+this.id+'_desc').fadeIn('slow');},function(){$('#'+this.id+'_desc').fadeOut('slow');});
});
