$(function() {
	$(document).pngFix();
		
	$("ul.navigation li").hover(
		function() {
			$(this).addClass("hover");
			$("ul", this).show();
		},
		function() {
			$(this).removeClass("hover");
			$("ul", this).hide();
		}
	);
  
  $('a.blank').click(
    function() {
      window.open(this.href);
      return false;
    }
  );
});

$(document).ready(function () {
  setTimeout ( "loadBackground()", 4000);
});

function loadBackground() {
  $('div.tile').css('background', 'transparent url(/images/bg_tile.gif) repeat scroll 0 0');
}