// JavaScript Document


$(function() {

	$(".img-over a").click(function() {
		return false;
	});

	$(".img-over a").hover(function() {
		$(this).css("cursor","pointer");
		var largePath = $(this).attr("href");
		$(".img-large").hide();
		$(".img-large").attr({ src: largePath });
		$(".img-large").fadeIn(700);
	},function() {
		var commentName = $(this).attr("class");
		$("div." + commentName).hide();
	    $("img." + commentName).fadeTo(200 ,1);
	});
});

