jQuery(document).ready(function () {
	jQuery("#search-field").focus(function() {
		jQuery(this).attr('value', '');
	});
	
	jQuery("#search-field").blur(function() {
		var field = jQuery(this);
		if (field.attr('value') == '') {
			field.attr('value', 'Search...');
		}
	});
	


});


function switchProddy(image, link) {
	// jQuery('#main-img').attr('src', image);
	jQuery('#buy-now-link').attr('href', link);
	jQuery('#main-img').fadeOut('slow', function() {
		// console.log(this);
		jQuery(this).attr('src', image);
		jQuery(this).fadeIn('slow');
	});
}