﻿$().ready(function() {
             // Search Box Fix
             var seek = "enter zip code";  

             $("#term").focus(function(){
                 $(this).val("");
             });
             $("#term").blur(function(){
                 if (($(this).val() == '') || ($(this).val() == 'enter zip or postal code')){
		    
                    $(this).val("enter zip code");
                 }
             });
             /*
             $("#term1").focus(function(){
                 $(this).val("");
             });
             $("#term1").blur(function(){
                 $(this).val(seek);
             });
             */
	     $("#Search").click(function(){
		MR_Search('query',GetMainSearchUrl('searchOption'));
	     });
             $("#searchOption").val('location');
             // End Search Box Fix

             // Footer Fix

		$('#nfooter').makeFAQ({
			displayIndex: false,
			faqHeader: "h6"
		});
             // End Footer Fix

             // Tab Fix
		$("#tabs").tabs();
		$("#tabs2").tabs();
             // End Tab Fix
});