//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================
$(document).ready(function(){
	//	IE iz teh sux0rz
	$(document).pngFix(); 
 
/*
	$("a#g-chatnow").hover(function(event){
		//	Get the variables
		url   			= $(this).attr("href");

		$(this).append('<div id="chat-box"></div>');
		
		$('img#img-gchatnow').attr('src',menuimages_hover['gchatnow']);

		//	Load the taget and show
		$('#chat-box').show().load(url + ' #chatcontent',function(){
			$('#chat-box').pngFix(); 
			$('#chatcontent').css('z-index',6000);
		});
	},function(event){
		$('#chat-box').remove();
		$('img#img-gchatnow').attr('src',menuimages_default['gchatnow']);
	});
*/
	

/*
	//	Chat Now toggle
	$("a#g-chatnow").hover(function(event){
		$('img#img-gchatnow').attr('src',menuimages_hover['gchatnow']);
		$('#chatcontent').css("display","block");
	},function(event){
		$('#chatcontent').hide();
		$('img#img-gchatnow').attr('src',menuimages_default['gchatnow']);
	});

	$("#chatcontent").hover(function(event){
		$('#chatcontent').show();
		$('img#img-gchatnow').attr('src',menuimages_hover['gchatnow']);
	},function(event){
		$('#chatcontent').hide();
		$('img#img-gchatnow').attr('src',menuimages_default['gchatnow']);
	});

*/

});
