$(document).ready(function(){    /* $('.down-list').width($('.dropdown-menu').width()-2); */    $('.dropdown-menu').hover(      function () {        $('.menu-first', this).addClass('slide-down');         $('.down-list', this).slideDown(100);      },       function () {        obj = this;        $('.down-list', this).slideUp(100, function(){ $('.menu-first', obj).removeClass('slide-down'); });      }    );      //Select all menu anchor tags with rel set to tooltip      //$('a,img').mouseover(function(e) {     //$('.menu-first').mouseover(function(e) {          $(".page_item > a,.ctc-tag a,.post-title a,.post-thumbs a img,#col1 div a, .inner-content a, .inner-content a img").mouseover(function(e) {                  //Grab the title attribute's value and assign it to a variable          var menutip = $(this).attr('title');                        //Remove the title attribute's to avoid the native tooltip from the browser          $(this).attr('title','');                       		 }).mouseout(function() {                //Put back the title attribute's value          $(this).attr('title', 'menutip');              });        $('#s,#s2').focus(function() {            // switch the search text to nothing on focus	    	$(this).attr('value','');        });	$('.delink').mouseover(		function ()	{	$('.pinboard').css("background-color","#eee");				});					$('.delink').mouseout(		function ()	{	$('.pinboard').fadeTo("slow", 1).css("background-color","#fff");				}	);	$('.twitlink').mouseover(		function ()	{	$('.twitter').css("background-color","#eee");				});					$('.twitlink').mouseout(		function ()	{	$('.twitter').fadeTo("slow", 1).css("background-color","#fff");				}	);  });  
