$(function () {
    $('#flash-header').flash(
        { src: '/media/263/lfccro_header.swf',
            width: 925,
            height: 112
        },
        { version: 9 }
    );
  
    $('a[href^="http://"]').attr('target', '_blank');
    $("a[href$='pdf']").attr('target', '_blank');
    $("a[rel^='prettyPhoto'], .rtePhoto").prettyPhoto({ theme: 'light_rounded' });

    $('.dropdown').each(function () {
        $(this).parent().eq(0).hover(function () {
            $('.dropdown:eq(0)', this).show();
        }, function () {
            $('.dropdown:eq(0)', this).hide();
        });
    });

    $("#prem-table tbody > tr:nth-child(odd)").css("background-color", "#D4D3D3");
    $("#prem-table tbody > tr:nth-child(even)").css("background-color", "#ECECEC");

});

