//document.domain = "ballbeachwear.com;"


$(document).ready(function(){ 


if (document.location == "http://www.ballbeachwear.com/montellocottage") {
	document.location = "http://site.ballbeachwear.com/montellocottage";
}
	
	$('.product_thumb').bind('click', function() {
		new_image_id = $(this).attr('id').substring($(this).attr('id').indexOf('-') + 1);
		old_image_id = $('.image_on').attr('id').substring($('.image_on').attr('id').indexOf('-') + 1);
		if (old_image_id != new_image_id) {
			$('.image_on').fadeOut(750);
			$('.image_on').removeClass('image_on');
			$('#productmain-' + new_image_id).fadeIn(750);
			$('#productmain-' + new_image_id).addClass('image_on');
		}
	});
	
	$('.subscribe_field').bind('focus', function() {
		if ($(this).val() == "email address") {
			$(this).val('');
			$(this).css('color', '#333333');
		}
	});
	
	$('.subscribe_field').bind('blur', function() {
		if ($(this).val() == "") {
			$(this).val('email address');
			$(this).css('color', '#999999');
		}
	});
	
});
