jQuery.fn.clearDefault = function(){
		return this.each(function(){
			var default_value = jQuery(this).val();
			jQuery(this).focus(function(){
				if (jQuery(this).val() == default_value) jQuery(this).val("");
			});
			jQuery(this).blur(function(){
				if (jQuery(this).val() == "") jQuery(this).val(default_value);
			});
		 });
};

jQuery(document).ready(function() {
    jQuery('footer input').clearDefault();
	
//Content-Odd
	$relatedOddWidth = jQuery('#productsRelated img').width();
	$relatedOddHeight = jQuery('#productsRelated img').height();
	
	$newOddWidth = $relatedOddWidth/1.5;
	$newOddHeight = $relatedOddHeight/1.5;
	
	jQuery('#productsRelated img').height($newOddHeight);
	jQuery('#productsRelated img').width($newOddWidth);

});
