$(window).load(function(){

// setup the support bar	
	$('#supportbar-button img').mouseover (function(){
		if ($('#supportbar-options').is(':hidden')) {
			$('#supportbar-options').slideDown('slow');
			$('#supportbar-button img').attr('src','/graphics/supportbar/support-bar-button-open.png');
		}
	});
	
	$(document).mousemove(function(e) { 
		if ($('#supportbar-options').is(':visible')) {								   
			if (e.pageY > 100) {
				$('#supportbar-options').slideUp('slow');
				$('#supportbar-button img').attr('src','/graphics/supportbar/support-bar-button-closed.png');
			}
		}
	});
	
});	

// function for popup windows
function popUp(pURL,pWidth,pHeight) {
	window.open(pURL,"","width=" + pWidth + ",height=" + pHeight + ",resizable=yes,scrollbars=yes");	
}

