$(document).ready(function(){
	var SW = $("#Wrap").width();
	$("#Gallery").css("width", SW);
	
    $("#Gallery li").each(function(){
		var bg = $("img", this).attr("src");
		var ih = $(this).height();
		$(this).css("backgroundImage","url(" + bg + ")");
		$(this).css("height",ih);
	});
    $("#Gallery li img").lazyload({ threshold : 200 });
	$("#Gallery li").hover(
		function () {
			$("p.Date", this).animate({bottom: "0px"}, 500 );
		},
		function () {
			$("p.Date", this).animate({bottom: "-25px"}, 500 );
		}
	);
    $("#MAbout a").colorbox();
});


$(window).resize(function(){
	var SW = $("#Wrap").width();
	$("#Gallery").css("width", SW);
});


$(window).load( function() {

});


