$(document).ready(function() {

	//remove text from top search form

		$("#searchinput").focus(function() {

             		if ( $(this).val() == "Search Store")

                	$(this).val('');

            		}

         	); 


//		  $("input:[value='957']").addClass('hide-oak') ;	
//used to hide default price of 0
//$("#realmen #price").each(function() {
//        		$(this).html($(this).html().replace('$0.00','Make Your Selection'));
//         	});

//$("#realmen .item").each(function() {
//        		$(this).html($(this).html().replace('List names of participants:','<span class="required">List names of participants*</span>'));
//         	});
//$("#realmen .options-titles").each(function() {
//	          $(this).html($(this).html().replace('Select a campus you attend','<span class="required">Select a campus you attend:*</span>'));
//         	});

//popup window

		$('a.new-window').click(function(){

     		var w = window.open(this.href, 'printwindow', 'width=425,height=270,scrollbars=yes,resizable=yes');

     		w.focus();

     		return false;

  			}

		);	
	
});





