/* 
  -------------------------------------------
  jQuery for focus function inside fields
  -------------------------------------------
*/


		$(function(){
			$(document).ready(function(){ 
				$("#sfield").val("Search").focus(function() {
					if ($(this).val() == "Search") {
						$(this).val("")
					}
				}); /* end val Search */
				$("#midtrh-midtrh").val("Subscribe to e-Specials").focus(function() {
					if ($(this).val() == "Subscribe to e-Specials") {
						$(this).val("")
					}
				}); /* end val Subscribe*/  
				$('#sfield').blur(function() {
					if ($(this).val() == '') {
						$(this).val("Search");
	 				 }
				}); /* end blur Search*/
				$('#midtrh-midtrh').blur(function() {
					if ($(this).val() == '') {
						$(this).val("Subscribe to e-Specials");
	 				 }
				}); /* end blur Subscribe*/
			}); /* end document ready */
		}); /* end main function */
