$(document).ready(function () {

    // Change opacity of image on mouse over
    $(".pressImage").mouseover(function () {
        $(this).css("opacity", "0.1");
        $(this).parent().next().show();
        //$(".pressDetails").show();
    });


    // Global reset of opacity and details    
    $(".pressOptions li").mouseleave(function () {
        $(".pressDetails").hide();
        $(".pressImage").css("opacity", "1");
    });


    $(".pressOptions li").click(function(){
        window.location = $(this).attr("url");
        return false;
    });

});
