jQuery(function($){
	
	var settings = {
		"effect" 			: "crossfade",
		"duration"			: "5",
		"effectDuration"	: 800,
		"bullets"			: true
	}
	
	if($("#slideshowContainer").length > 0)
		$("#slideshowContainer").slideshow(settings);
		
	$("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();
	});
	
	var fields = $("#formBox #contactForm input[type=text], #formBox #contactForm textarea");
	fields.css("color", "#888");
	fields.focus(function(){
		default_value = $(this).val();
		$(this).val("");
		$(this).css("color", "#333");
	});
	fields.blur(function(){
		if($(this).val().length == 0)
		{
			$(this).val(default_value);
			$(this).css("color", "#888");
		}
	});
	
});
