// JavaScript Document $(document).ready( function() { $("div.subMenu").hide(); $("div.gallery").show(); $("div.galleryToggleDiv").css('background-image', 'url("images/gallery_up.jpg")'); $("a#galleryToggle").click( function(event) { event.preventDefault(); var position = $("div.galleryToggleDiv").css('background-image'); if (position=='url("images/gallery_down.jpg")') { $("div.galleryToggleDiv").css('background-image', 'url("images/gallery_up.jpg")'); } else { $("div.galleryToggleDiv").css('background-image', 'url("images/gallery_down.jpg")'); } $("div.gallery").slideToggle(); }); $("div.subHead").click( function(event) { event.preventDefault(); var element = "div#" + $(this).attr("id") + "List"; $(element).slideToggle(); }); $("a.videoLink").colorbox({iframe:true, innerWidth:320, innerHeight:240, scrolling:false}); });