$(document).ready(function () {
    apply_rollover_images();
});

function apply_rollover_images() {
    var page = window.location.pathname.substring(1);

    $(".rollover_link").each(function () {
        if ($(this).attr("href") == page) {
            if(String($(this).find("img").attr("src")).indexOf("flower") <= -1)$(this).find("img").css("display", "none");
        }
        else {
            $(this).bind("mouseenter", function () {
                $(this).find("img").fadeOut("fast");
            });
            $(this).bind("mouseleave", function () {
                $(this).find("img").fadeIn("fast");
            });
		$(this).bind("mousedown", function () {
                	window.open($(this).attr("href"), "_self");
            	});
        }

        $(this).width($(this).find("img").width());
        $(this).height($(this).find("img").height());

        var image_name = $(this).find("img").attr("src");
        image_name = image_name.replace("_off.", "_on.");
        $(this).css("background-image", "url('" + image_name + "')");
    });
}


