$(document).ready( function() {
	$('#splash-home img, #splash img, #product-selections img, #digitaleye img').ifixpng(); // fix PNG for IE6
	$('#size, #qty').sSelect();
	$('#color').sSelect().change(function() {
		// change product image
		var $newColor = "red";
		if ($('#color').getSetSSValue() != "") $newColor = $('#color').getSetSSValue();
		var newProductImage = "images/products/" + $newColor.toLowerCase().replace(" ", "-")  + ".jpg";
		$('#productImage').attr({ src : newProductImage });
	});
	$('#product-selections a').click(function (e) { 
		e.preventDefault();
		$('#color').getSetSSValue($(this).attr('rel'));
    });
	
	$('#addToCartButton').click(function (e) {
		if ($('#color').val() == "" || $('#size').val() == "" || $('#qty').val() == "") {
			// didn't select all info
			alert("Please select Size, Color, and Quantity");
			e.preventDefault();
		}
		else {
			$('#itemColor').val($('#color').val());
			$('#itemSize').val($('#size').val());
			$('#itemQty').val($('#qty').val());
		}		
	});
});
