$(document).ready(function(){

	// Remove focus outline on all links when clicked
	$("a").focus(function(){
	  $(this).blur();
	});
	
	// Search box hide/display default text on focus/blur
	$("#searchField").focus(function() {
		if(this.value == this.defaultValue) {
			this.value = "";
		}
	}).blur(function() {
		if(!this.value.length) {
			this.value = this.defaultValue;
		}
	});
	
	$(".prod-links").toggle(function(){
		var rel = "#" + $(this).attr("rel");
		//$(".submenu:visible").hide();
		$(rel).show("fast");
		return false;
	},function(){
		var rel = "#" + $(this).attr("rel");
		$(rel).hide("fast");
		return false;
	});
	
	

	
});
  

