var sOriginal;

$(document).ready(function(){
	sOriginal = $("img.photo").attr("src");
	
	$("a[rel='gallery']").colorbox({maxWidth:'100%', maxHeight:'100%'});
	$("#photos img").hover(
		function () {
			$("img.photo").attr("src", $(this).attr("src")+"&s=275");
		},
		function () {
			$("img.photo").attr("src", sOriginal);
		}
    );

});
