$(function() {
    if (scripts_isIE6) $(document).pngFix();

    $('a.ro').mbRollover();

    if ($.fn.prettyPhoto) {
        $("a[rel^='lightbox']").prettyPhoto({
            animationSpeed: 'slow',
            padding: 40,
            opacity: 0.85,
            showTitle: false,
            allowresize: true,
            counter_separator_label: '/',
            theme: 'light_rounded'
        });
    }

    $(".homeSite").mouseover(function () {
        var divId = $(this).attr("id");
        $("#" + divId + "_on").fadeIn("normal");
    });

    $(".homeSiteOn").mouseout(function () {
        var divId = $(this).attr("id");
        $("#" + divId).fadeOut("normal");
    });
});
