$(document).ready(function() {
  

 // Adds and removes search text
 $('#header #site-search input[type="text"]').addClass('watermark');
 $('#header #site-search input[type="text"]').focus(function(){
 $(this).filter(function(){
 return $(this).val() === '' || $(this).val() === 'Search';
 }).removeClass('watermark').addClass('text').val('');
 }).blur(function(){
 $(this).filter(function(){
 return $(this).val() === '';
 }).removeClass('text').addClass('watermark').val('Search');
 });

})
  
 $(document).ready(function() {
  
  
    jQuery('div.demo-show h2').add('div.demo-show2 h2').hover(function() {
    jQuery(this).addClass('hover');
  }, function() {
    jQuery(this).removeClass('hover');
  });

  jQuery('div.demo-show:eq(0) > div:gt(0)').hide();  
  jQuery('div.demo-show:eq(0) > h2').click(function() {
    jQuery(this).next('div:hidden').slideDown('fast')
    .siblings('div:visible').slideUp('fast');
  });
  
  
})  

