$j=jQuery.noConflict();

$j(document).ready(function () 
{					

	$j('h3.sideHiderTitle').bind
		('click', function(){	
		$j('.limo').animate
		  (
			{
			marginLeft: '1000px'
			}, 5000
		  );
		 $j('.limo').animate
		  (
			{
			marginLeft: '-1000px'
			}, 0
		  );
		  




});
				
});		




