﻿
function removeHover() {
	$('img.rollover').each(function () {
		$(this).attr("src", $(this).attr("src").split("-over.j").join(".j"));
	});
}

$(window).unload(function () { removeHover(); });

$(document).ready(function () {

	$("a.gallery").fancybox({
		'width': 573,
		'height': 581,
		'autoScale': false
	});

	$("a.map").fancybox({
		'width': 450,
		'height': 400,
		'autoScale': false
    });

    $("a#video").fancybox({
        'width': 450,
        'height': 400,
        'autoScale': false
    });

	$("img.rollover").hover(function () {
		$(this).attr("src", $(this).attr("src").split(".j").join("-over.j"));
		$(this).addClass('over')
	}, function () {
		$(this).attr("src", $(this).attr("src").split("-over.j").join(".j"));
		$(this).removeClass('over')
	});

	$("input.rollover").hover(function () {
		$(this).attr("src", $(this).attr("src").split(".j").join("-over.j"));
		$(this).addClass('over')
	}, function () {
		$(this).attr("src", $(this).attr("src").split("-over.j").join(".j"));
		$(this).removeClass('over')
	});

});