window.scrollTo = function(){};

// initialise dropdown menu including iframe for ie6 to sit on top of select boxes
$().ready(function() {
    $("ul.nav li ul").show();
});

$(document).ready(function(){

    //nav dropdowns
    $(".nav")
    .superfish({speed:1,delay:0})
    .find(">li:has(ul)")
    .mouseover(function(){
        $("ul", this).bgIframe("{opacity:false}");
    })		
    .find("a")
    .focus(function(){
        $("ul", $(".nav>li:has(ul)")).bgIframe({opacity:false});
    });

    //directors gallery
    $('.jGalleryImage').click(function() {
        $('div.director div:visible').fadeOut('fast');
        $('div.director div').eq($('.jGalleryImage').index(this)).fadeIn('slow');
    });
    
});

function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}
