$(document).ready(function(){
  $('h1,h2').append('<span></span>');
  $('.product').append('<div class="clear"></div>');
  $('#content li:odd').css({'background':'#eee'});
  
  $('#switchnav div').hide();
  $('#switchnav h1').click(function(){
	if($(this).next('div').is(":hidden")){
		$('#switchnav h1').removeClass('active');
		$(this).addClass('active').next('div').slideDown(); 
		$('#switchnav div:visible').hide(); } else {
		$(this).removeClass('active').next('div').slideUp(); };
  });

  $('.sprice').each(function(){
     if ($.trim($(this).text()) == '$0.00')
     {
	 $(this).html("HIRE")
     }
  });
  $('#price').each(function(){
     if ($.trim($(this).text()) == '$0.00')
     {
	 $(this).html("HIRE")
     }
  });

  
  
  /*	Category View */
  

  //$('#price').html('$0.00')){$('#price').html('HIRE');};
  //$('#price').html('$0.00').replaceWith('HIRE');
});
