$(document).ready(function(){

  $('#main-nav > li').hover(function(){
    $(this).children('ul').slideDown();
  }, function(){
    $(this).children('ul').slideUp();
  });

  // Set the default text for the blog search form
  if ($('#search-3 #s').val() == ''){
    $('#search-3 #s').val('SEARCH');
  }
  $('#search-3 #s').focus(function(){
    if ($(this).val() == 'SEARCH'){
      $(this).val('');
    }
  }).blur(function(){
    if ($(this).val() == ''){
      $(this).val('SEARCH');
    }
  });
  
	// Special Offers button slide out sub pages
	jQuery(".offers-btn").click(function(){
		jQuery(".request-form").slideToggle("slow");
	});
  
});
