﻿/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/
var $j = jQuery.noConflict();
$j(document).ready(function(){	
	var searchBox1 = $j("#txtSearch");
	var searchBox1Default = "Search ShopRite.com";
	searchBox1.focus(function(){
		if($j(this).attr("value") == searchBox1Default) $j(this).attr("value", "");
	});
	searchBox1.blur(function(){
		if($j(this).attr("value") == "") $j(this).attr("value", searchBox1Default);
	});
});
