$.noConflict();
jQuery(document).ready(function($) {
   
   // Hover effect for dropdown li
   $("ul.dropdown li").hover(
   
     // mouseover
     function(){
       $(this).stop();
       $(this).addClass('hover');

     },
     
     // mouseout
     function(){
       $(this).stop();
       $(this).removeClass('hover');
     } 
   );   
   
   
   
   // Behaviour of search box
   $("input#s").focus(function(){
   
     if($(this).attr("title") == $(this).attr("value")){
       $(this).attr("value", ""); 
     }  
   
   });  
   
   $("input#s").blur(function(){
   
     if($(this).attr("value") == ""){
       $(this).attr("value", $(this).attr("title")); 
     }  
   
   });

});