//flash embedding
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////

function embedHome() {
	swfobject.embedSWF("{theme_path}homeflash.swf", "flash", "950", "360", "8.0.0");
}
function embedProdHome() {
	swfobject.embedSWF("{theme_path}homeflash.swf", "prodFlash", "950", "360", "8.0.0");
}

//creates a pop-up window
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////

function popUp(strURL,strType,strHeight,strWidth) {
	var strOptions="";
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	window.open(strURL, 'newWin', strOptions);
}

//page tracking
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function trackPage() {
	var pageTracker = _gat._getTracker("UA-5024096-2");
	pageTracker._initData();
	pageTracker._trackPageview();
}


//run these functions on load
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////

$(document).ready(function(){ 
		
	$("#DistLogin").click(function() {
		$("#login").fadeIn("fast");
	   });
	
	$("#cancel").click(function() {
		$("#login").fadeOut("fast");
		return false;
	   });
	
	trackPage();
	
});