/* greybox popup */

var GB_ANIMATION = true;
      $(document).ready(function(){
        $("a.greybox").click(function(){
          var t = this.title || $(this).text() || this.href;
          GB_show(t,this.href,470,630);
          return false;
        });
      });

$(document).ready(function(){
	$("img#logo").fadeIn("slow");	
}); 

/* fade in sub image */
$(document).ready(
			function(){
				$("img.subheader").fadeIn("slow");			
		});
/* open external links in a new window */
$(document).ready(function() {
	$("a[@rel='external']").click(function() {return !window.open(this.href);
		});
});

/* add contact form link to menu 
$(document).ready(function() { 
        $("#level2 li:last").append("<li><a class='greybox' href='http://reports.dsiuk.com/contactus/'>Contact Form</a></li>")
});*/