$(document).ready(function(){ $(function () { $("div#header-top").click( function() { $("#homeForm")[0].submit() }); // $("div#menu-item").hover( // function () { // // $( "div#" + $(this).attr("child") ).show(); // }, // function () { // // // $( "div#" + $(this).attr("child") ).hide(); // // } // ); $(".menu-item").hover( function () { $( "div#" + $(this).attr("child") ).show(); }, function () { $( "div#" + $(this).attr("child") ).hide(); } ); $(".fancyboxMid").fancybox({ 'hideOnContentClick': false, 'overlayOpacity': 0.8, 'frameWidth': 650, 'frameHeight': 600 }); $(".fancyboxBig").fancybox({ 'hideOnContentClick': false, 'overlayOpacity': 0.8, 'frameWidth': window.scrWidth, 'frameHeight': window.scrHeight }); $(".fancyboxSmall").fancybox({ 'hideOnContentClick': false, 'overlayOpacity': 0.8, 'frameWidth': 500, 'frameHeight': 300 }); }); });