    $(document).ready(function(){							   
       //$(document).pngFix();
		var winW = $(window).width();
		var winH = $(window).height();		
		var topPOS = (winH -429)/2; 
		var leftPOS = (winW -681)/2; 
		var browserheight = $("#page").height();
		
		
//		alert (topPOS) ;		
		$(".loghtbox_bg").width(winW);
		$(".loghtbox_bg").height(browserheight);
		$(".loghtbox_bg").fadeIn(500);		
		$(".killslow_panel").css('left', leftPOS);
		$(".killslow_panel").css('top', topPOS);
		

		$(document).bind('keyup', function(e) {
			if(e.keyCode == 27) {
			$(".loghtbox_bg").fadeOut(500);             
			$(".killslow_video").fadeOut(500);
			}
		});



		$(".clsose_lightbox").click(function(){
		$(".loghtbox_bg").fadeOut(500);	
		$(".killslow_video").fadeOut(500);
		 });
	

		
		
    });
	

 //Ajax function to track chat click

 function getchat()
 {
 	var httpxml;
	try {
  		// Firefox, Opera 8.0+, Safari
  		httpxml=new XMLHttpRequest();
  	}catch (e) {
  		// Internet Explorer
		try	{
   			httpxml=new ActiveXObject("Msxml2.XMLHTTP");
    	}catch (e){
    		try{
      			httpxml=new ActiveXObject("Microsoft.XMLHTTP");
     		 }catch (e){
		   		alert("Your browser does not support AJAX!");
      			return false;
      		 }
    	}
   }
	var url="track_chatclick.php";
	url=url;
	httpxml.open("GET",url,true);
	httpxml.send(null);
	
 }

