// PRELOAD
/*
(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)
*/
/*
jQuery.preLoadImages("/images/header_slide1.jpg", "/images/header_slide2.jpg", "/images/header_slide3.jpg", "/images/header_slide4.jpg", "/images/header_slide5.jpg", "/images/header_slide6.jpg");
*/
// REFRESH
/*
$(window).bind('resize',function(){
	 	window.location.href = window.location.href;
});
*/
// CYLCE
$(document).ready(function() {
/*
	$('#header').cycle({ 
	    fx:     'fade', 
	    speed:  1000,
		timeout: 5000
	});
*/
	$('#map1 .link').click(function(){
		$('#map1').hide();
		$('#map2').show();
		$(window).unbind();
	});
	$('#map2 .link').click(function(){
		$('#map2').hide();
		$('#map1').show();
		$(window).unbind();		
	});
});

