jQuery.noConflict();
var slideSpeed = 400;

jQuery(function(){ 
	jQuery("#VLeft").css("left","-220px");
	jQuery("#VLeft").hover(
		function () {
			jQuery("#VLeft").animate({left: "0px"}, slideSpeed );
		}, 
		function () {
			jQuery("#VLeft").animate({left: "-220px"}, slideSpeed ); 
		}
	);
});

jQuery(function(){ 
	jQuery("#VRight").css("right","-220px");
	jQuery("#VRight").hover(
		function () {
			jQuery("#VRight").animate({right: "0px"}, slideSpeed );
		}, 
		function () {
			jQuery("#VRight").animate({right: "-220px"}, slideSpeed ); 
		}
	);
});

jQuery(function(){ 
	jQuery("#VTop").css("top","-200px");
	jQuery("#VTop").hover(
		function () {
			jQuery("#VTop").animate({top: "0px"}, slideSpeed );
		}, 
		function () {
			jQuery("#VTop").animate({top: "-200px"}, slideSpeed ); 
		}
	);
});

jQuery(function(){ 
	jQuery("#VBottom").css("bottom","-200px");
	jQuery("#VBottom").hover(
		function () {
			jQuery("#VBottom").animate({bottom: "0px"}, slideSpeed );
		}, 
		function () {
			jQuery("#VBottom").animate({bottom: "-200px"}, slideSpeed ); 
		}
	);
});
