/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2009 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
$(document).ready(function(){

$(".wrap div").hover(function() {
	$(this).animate({"top": "-75px"}, 900, "swing");
},function() {
	$(this).stop(true,false).animate({"top": "0px"}, 900, "swing");
});

});

/* ================================================================ 
For Sidebar 336px X 280px Text Reveal Effect (photo info)
=================================================================== */
$(document).ready(function(){

$(".wrap1 div").hover(function() {
	$(this).animate({"top": "-89px"}, 900, "swing");
},function() {
	$(this).stop(true,false).animate({"top": "0px"}, 900, "swing");
});

});

