jQuery.noConflict();

jQuery(document).ready(function(){
	var x=0;
	jQuery('#widget').click(function(){
		 jQuery('#widget').animate({
    		right: x
  		}, 100, function() {
    		x = 0;
 		});
	});
	
	jQuery('#widget1').mouseout(function(){
		 jQuery('#widget').animate({
    		right: -300
  		});
	})
});
