$(document).ready(function () {

    $("#ImageS img").click(function () {
        var CLASS = $(this).attr("class");
        $("#ImageL div").hide();
        $("#ImageL ." + CLASS + "").show();
    });

    $('#ImageGallery').hover(function () {
        $(this).find('#ImageS').animate({ top: '0px' }, { queue: false, duration: 500 });
    }, function () {
        $(this).find('#ImageS').animate({ top: '-200px' }, { queue: false, duration: 500 });
    });

    $(".Image1 span:empty").parent().parent().hide();

    $(".Files p:empty").parent().hide();
	
	$("#Footer a[href*='http']").attr("target","_blank");
	
	$("a[href*='pdf']").click(function () {
		_gaq.push(["_trackEvent", "Documents", "PDF", "" + $(this).attr('href') + ""]);
	});

});

