$(document).ready(function(){	//Page Flip on hover 	$("#pageflip").hover(function() {		$("#pageflip img , .msg_block").stop()			.animate({				width: '307px', 				height: '319px'			}, 500); 		} , function() {				$("#pageflip img").stop() 			.animate({				width: '50px', 				height: '52px'			}, 220);				$(".msg_block").stop() 			.animate({				width: '50px', 				height: '50px'			}, 200);	});

	//Default Action	$(".tab_content").hide();	$(".tab-block ul li:first").addClass("active").show();	$(".tab_content:first").show();		//On Click Event	$(".tab-block ul li").click(function() {		$(".tab-block ul li").removeClass("active");		$(this).addClass("active");		$(".tab_content").hide();		var activeTab = $(this).find("a").attr("href");		$(activeTab).fadeIn();		return false;	});		//Default Action22222222222	$(".tab_content2").hide();	$(".tab-block2 ul li:first").addClass("active2").show();	$(".tab_content2:first").show();		//On Click Event2222222222	$(".tab-block2 ul li").click(function() {		$(".tab-block2 ul li").removeClass("active2");		$(this).addClass("active2");		$(".tab_content2").hide();		var activeTab = $(this).find("a").attr("href");		$(activeTab).fadeIn();		return false;	});			// On unload open popup	//$(window).unload( function () {$.fn.colorbox({href:"poll.php", open:true});} );	
});
