//Declare variables var LightboxWidth = 600; var DropdownWidth = 140; var DropdownPadding = 3; var DropdownBackground = "#ff9600"; var DropdownColor = "#FFFFFF"; var DropdownBackground_Over = "#df117c"; var DropdownColor_Over = "#FFFFFF"; var DropdownFont = "Tahoma, Verdana, Arial, Helvetica, sans-serif"; var DropdownSize = 14; var DropdownDividerColor = "#fcbe66"; var DropdownDivider = 1; var DropdownUnderline = "none"; var DropdownX = -35; var DropdownY = 22; //Create elements document.write('
'); document.write(''); document.write(''); var activate_dropdown=""; var current_dropdown=""; $(document).ready(function() { $(".lightbox").click(function () { ShowLightbox(); $("#xi-lightbox-frame").load(this.href); return false; }); $(".effect").bind("mouseover",function(){ $(this).animate({opacity: 0.3},400,'',function(){ $(this).animate({opacity: 1.0},400); }); }); //menu items with dropdowns $(".dropdown_menu").bind("mouseover",function(){ activate_dropdown = $(this).attr('title'); if(activate_dropdown != current_dropdown) { var offsetposition = $(this).offset(); $(activate_dropdown).css('left', offsetposition.left + DropdownX); $(activate_dropdown).css('top', offsetposition.top+DropdownY); $(activate_dropdown).fadeIn(1); } }); //menu items without dropdowns $(".no_dropdown").bind("mouseover",function(){ $(".dropdown").fadeOut(1); current_dropdown=null; }); // $(".dropdown").mouseleave(function() { $(this).fadeOut(1); current_dropdown=null; }); }); function ShowLightbox() { var ScreenHeight = (typeof window.innerHeight != 'undefined' ? window.innerHeight : document.body.offsetHeight); var LightboxHeight = ScreenHeight-100; $("#xi-lightbox-frame").height(LightboxHeight); $("#xi-fader").fadeIn(300, function(){ $("#xi-lightbox").fadeIn(500); }); } function CloseLightbox() { $("#xi-lightbox").fadeOut(500); $("#xi-fader").fadeOut(500); }