    $(document).ready(function(){
        $(document).pngFix();


		var winW = $(window).width();
		var winH = $(window).height();		
		var topPOS = (winH -400)/2; 
		var leftPOS = (winW -650)/2; 
		var browserheight = $(".main_container").height();
		
		
//		alert (topPOS) ;		
		$(".loghtbox_bg").width(winW);
		$(".loghtbox_bg").height(browserheight);
		$(".loghtbox_bg").fadeIn(500);		
		$(".muthoot_panel").css('left', leftPOS);
		$(".muthoot_panel").css('top', topPOS);
				
		$(".clsose_lightbox").click(function(){
		$(".loghtbox_bg").fadeOut(500);	
		$(".muthoot_video").fadeOut(500);
		 });
	

		setTimeout( "cycle()", cycleInterval * 500 );

	
		
		
    });
	
var cycleInterval = 5;

	function cycle()
{
	$(".muthoot_banner").fadeOut(500);
	$(".muthoot_video").fadeIn(500);

//	alert("hello")
}
