/**
 * @author Bully! Entertainment
 */

// JavaScript Document

var BGImageList = { 
                    downtown: "images/bg/downtown.jpg",
                    woods: "images/bg/woods.jpg"
				};
var imageToSwap = "";

function openClubhousePopup ( url )
{
	clubhouseWindow = window.open ( url, "phclubhouse", "width=740,height=480,location=no,toolbar=no,scrollbars=no" );
	clubhouseWindow.focus ( );
}

function openPrivacyPopup ( url )
{	
	privacyWindow = window.open ( "ph_"+url+".html", "privacywindow", "width=517,height=480,location=no,toolbar=no,scrollbars=yes,menubar=no,resizable=no,status=no" );
	privacyWindow.focus ( );
}

$(document).ready(function(){	
	jQuery.preLoadImages(BGImageList.downtown, BGImageList.woods);
	$('#bgImage').css("background-image","url("+BGImageList["woods"]+")")
});

(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)

function fadeBGOut ( ) {
	$('#bgImage').stop();
	$('#bgImage').fadeTo('slow', 0);
}

function fadeBGIn ( ) {
	$('#bgImage').stop();
	$('#bgImage').fadeTo('slow', 1);
}

function setBGImage ( $image ) {
	$('#bgImage').css("background-image","url("+BGImageList[$image]+")")
}
