jQuery.noConflict();
jQuery(document).ready(function($) {
  if($('#sidebar').length){
   $('body').addClass('sidebar');
  }else{
    var isNotFront = $('body').hasClass('interior');
    if(isNotFront == true){
      $('body').addClass('no-sidebar');
    }
  }
  
  if ($('#s').val().length == 0) {
    $('#s').val('Search the site...');
  };
  
  $('#s').live('click', function(event) {
    if($(this).val() =='Search the site...' ){
      $(this).val(' ');
    }
  });
  
  $('#news-list li:first').addClass('first');
  $('#news-list li:last').addClass('last');
  
  //adding help me choose content
  $('.help-me-choose-content').append('<div id="content-placeholder"><p>Please Select an item on the left to view the contents</p></div>')
  $('#help-me-choose-links #secondary a').click(function() {
    $('#help-me-choose-links #secondary .current_page_item').removeClass('current_page_item');
    $(this).parent('li').addClass('current_page_item');
    $('#content-placeholder').load($(this).attr('href'));
    
    return false;
  });
  
  var base_domain = 'http://descase.com/';
  $('li.page-item-329 a').attr('href', base_domain + 'customizers/filtercart.php');
  $('li.page-item-332 a').attr('href', base_domain + 'customizers/drumtopper.php');
  $('li.page-item-477 a').attr('href', base_domain + 'customizers/panelunit.php');
});
