/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2009 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
$(document).ready(function(){

$(".wrap a").hover(function() {
	$(this).animate({"right": "-220px"}, 220, "swing");
},function() {
	$(this).stop(true,false).animate({"right": "0px"}, 220, "swing");
});

});

