	//yonis jquery stuff for socialink	//yoni@social-ink.net	var $j = jQuery.noConflict(); //declare this cause of problems with WP	$j(function(){				//img fading on hover				$j("a#donateclick img").hover(function() {			$j(this).fadeTo("fast", 0.8);			}, function() {			$j(this).fadeTo("fast", 1);		});					//test nav menu stuff			$j(".sink_topdrop").hover(function() {				$j(this).children('.sink_dropdown_menu').slideDown("fast","linear");				}, function() {				$j(this).children('.sink_dropdown_menu').slideUp("medium");			});				//imput clearing				var clearMePrevious = '';				// clear input on focus		$j('.clearMeFocus').focus(function()		{			if($j(this).val()==$j(this).attr('title'))			{				clearMePrevious = $j(this).val();				$j(this).val('');			}		});				// if field is empty afterward, add text again		$j('.clearMeFocus').blur(function()		{			if($j(this).val()=='')			{				$j(this).val(clearMePrevious);			}		});				//top fade		$j(".navigation img").hover(function() {				$j(this).fadeTo("fast", 0.8);				}, function() {				$j(this).fadeTo("fast", 1);			});					$j('#fp_tab_button0').addClass("current_tab");		$j('.tab_clickers').each(function(index) {			 jQuery(this).bind (			 "click",				 function(){					$j('.tab_buttons').removeClass('current_tab');					$j(this).parents('.tab_buttons').addClass("current_tab");					$j('.fp_tab').fadeOut("fast");					$j('#fp_tab'+(index)).fadeIn();										return false;				 }			 );			  		  });							//clear input on email sign up 				$j('input[type=text]').one('focus', function(){			$j(this).attr('value', '');		});			});
