// Sliding Boxes and Captions with JQuery - March 2009 - By Sam Dunn - www.buildinternet.com / www.onemightyroar.com

			$(document).ready(function(){
				//Caption Sliding (Partially Hidden to Visible)
				$('.box_image.caption').hover(function(){
					$(".cover", this).stop().animate({top:'180px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'226px'},{queue:false,duration:500});
				});
			});
			    $(window).resize(function(){
        $.fn.colorbox.load();
    }); 