jQuery(function($){
	
	var settings = {
		"effect" 			: "fade",
		"duration"			: "5",
		"effectDuration"	: 800,
		"bullets"			: true
	}
	
	if($("#slideshowContainer").length > 0)
		$("#slideshowContainer").slideshow();
		
	$("select[name=product_select_attr1], select[name=product_select_attr2]").siblings("input[type=submit]").hide();
	$("select[name=product_select_attr1], select[name=product_select_attr2]").live("change", function(){
		$(this).parent("form").submit();
	});
	
	$("#menu li:last-child a").css({
		"background" : "none"
	});
	
});
