$(document).ready(function () {
    $("a[rel=fancybox]").fancybox({
        titleShow: false
    });
    $("a[rel=coveragemap]").fancybox({
        titleShow: false
    });
    $(".iframe").fancybox({
        width: 800,
        height: 480,
        scrolling: "no",
        autoScale: false
    });
    $(".infotable.plans tr").mouseover(function () {
        $(this).css("background", "#FFEFEF")
    });
    $(".infotable.plans tr").mouseout(function () {
        $(this).css("background", "white")
    })
		

})
