jQuery(document).ready(function() {
	// large project
	$("#large").stop().animate({opacity: 0}, 'fast');
	$("#content a").hover(function(){
		if (this.title == "large") {
			$(this).nyroModal();
			this.t = this.title;
			$("#large").append("<img src='"+ this.href +"' id='image-large'/>");
			$("#large").stop().animate({opacity: 1}, 'normal');
			this.title = "";
		};
	},
	function(){
		this.title = this.t;
		$("#large").stop().animate({opacity: 0}, 'fast');
		$("#image-large").remove();
    });
});
