// JavaScript Document $(document).ready(function() { $('.jtbox').click(function() { //alert($(this).attr("href")); //Show Box $('.jtbox_underlay').fadeTo('fast', 0.8); $('.jtbox_overlay').fadeIn(); return false; }); $('#jtbox_close').click(function() { //alert($(this).attr("href")); //Show Box $('.jtbox_underlay').fadeOut('fast'); $('.jtbox_overlay').fadeOut('fast'); return false; }); });