// JavaScript Document
// Copyright (c) 2010 Hen's Teeth Network. All rights reserved.

$(function(){
	// Get the options off of the URL
	$("#size-select").val('all');
	
	if (-1 != $("#title_container").html().indexOf('Gift Certificates'))
	{
		$("#cat_desc").hide();
		$("#size-select").hide();
	}
	
	$(".jumpmenu").change(function(){
		var sOptions = location.search;	
		
		if ("all" == $("#size-select").val())
		{
			// For size = all, refresh the page and let pdg do the searching
			window.location = "/cgi-bin/commerce.cgi" + sOptions;
		}
		else
		{
			// When the size menu changes, replace the products on the page with the results from this query
			$("#productslist").load("/SKRTemplates/scripts/search.php" + sOptions + "&size=" + escape($("#size-select").val()));
			$("#title_by_size").html("size " + $("#size-select :selected").text());
		}
	});
});