jQuery(window).load(function(){
	jQuery(".slide").bind('mouseover',function(){
		//return if animated
		jQuery(".slide").stop(true);
		
		//set the top
		var right = parseInt(jQuery(".slide").css('right').replace('px',''));
		
		//set the original right
		if(!jQuery(".slide").data('right')){
			jQuery(".slide").data('right',right);
		}
		
		//if its closed open it
		if(right != -323){
			jQuery(".slide").animate({ 'right':-323 });
		} 
		
	});
	jQuery(".slide").bind('mouseleave',function(){
		//return if animated
		jQuery(".slide").stop(true);
		
		//set the top
		var right = parseInt(jQuery(".slide").css('right').replace('px',''));
		
		//set the original right
		if(!jQuery(".slide").data('right')){
			jQuery(".slide").data('right',right);
		}
		
		//if its closed open it
		jQuery(".slide").animate({ 'right':jQuery('.slide').data('right') });
		
	});
	jQuery(".slide").show();
	
});
