Implementing FancyBox

If you check your console for errors as @patnz suggested, you’ll likely see that $ is undefined. This is because WordPress loads jQuery in noConflict mode. Try this instead:

<script>
jQuery(document).ready(function($) {
    $("a.fancy").fancybox({
        'transitionIn'  :   'elastic'
    });
});
</script>