$(document).ready(function(event){
    $('a[showcase]').mouseover(function(event){
        $('#showcased_recipes div').css('z-index',1);
        $('#showcased_recipes div#'+$(this).attr('showcase')).css('z-index',2);;
    });
});