$(document).ready(function() {

	$("#product_tabs a").live("click", function() {
		$(".product_showhide").hide();
		$("#"+ $(this).attr("rel")).fadeIn();
		return false;
	});
	
	$("#qs, #mqs").focus(function() {
		if($(this).val() == "Enter search words here") {
			$(this).val("");
		}
	}).blur(function() {
		if($(this).val() == "") {
			$(this).val("Enter search words here");
		}
	});

});