	//yonis jquery stuff for socialink	//yoni@social-ink.net	var $j = jQuery.noConflict(); //declare this cause of problems with WP	$j(function(){		//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);				}			});				//slideshows		//manually set total size initially	var total_slides = $j(".sink__slide").size();				$j('li.totalsize').text('1 of ' + total_slides);			//normal slideshow that automatically updates the cycle	$j('.slideshow_container').cycle({		fx:       	'fade',		timeout:   	4000,		next:   '.slideshow_next', 		prev:   '.slideshow_prev',		after: onAfter	});						function onAfter(curr,next,opts) {			var caption = (opts.currSlide + 1) + ' of ' + opts.slideCount;			$j('.totalsize').html(caption);		}			});			
