jQuery.noConflict();

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