$(document).ready(function(){
						   
	$.ajaxSetup ({
		cache: false
	});
	$("#info").load("lib/info.php");
	   var refreshId = setInterval(function() {
		  $("#info").load('lib/info.php?' + 1*new Date());
	   }, 6000);
	   
	$("#tgame").load("lib/tgame.php");
	   var refreshId = setInterval(function() {
		  $("#tgame").load('lib/tgame.php?' + 1*new Date());
	   }, 6000);
	   
	$("#tklick").load("lib/tklick.php");
	   var refreshId = setInterval(function() {
		  $("#tklick").load('lib/tklick.php?' + 1*new Date());
	   }, 6000);
	   
		//hide the all of the element with class msg_body
		$(".msg_body").hide();
		 //toggle the componenet with class msg_body
		$(".msg_head").click(function()
		{
			$(this).next(".msg_body").slideToggle(600);
		});
 		$(".fbshimlyisland").fancybox({
			'width'				: 690,
			'height'			: 450,								
			'opacity'			: true,
			'autoScale'			: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'speedIn'			: 500,
			'speedOut'			: 500,
			'easingIn'			: 'swing',
			'easingOut'			: 'swing',
			'titleShow'			: true,		
			'overlayOpacity'	: 0.5,
			'overlayColor'  	: '#000000',
			'centerOnScroll'	: true,		
			'hideOnOverlayClick': false,
			'hideOnContentClick': false			
		});	
		
		
		$("#iframe").fancybox({
			'width'				: '75%',
			'height'			: '75%',
			'opacity'			: true,
			'autoScale'			: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'speedIn'			: 500,
			'speedOut'			: 500,
			'easingIn'			: 'swing',
			'easingOut'			: 'swing',
			'type'				: 'iframe',
			'titleShow'			: false,		
			'overlayOpacity'	: 0.5,
			'overlayColor'  	: '#000000',
			'centerOnScroll'	: true,
			'hideOnOverlayClick': false,
			'hideOnContentClick': false
		});

});
