$(document).ready(function(){
	$(".trigger").click(function(){
		$(".slickpanel").toggle("slow");
		$(this).toggleClass("active");
		return false;
	});
});

$(document).ready(function(){
		$("#pageflip").hover(function() {
			$("#pageflip img , .msg_block").stop()
				.animate({
					width: '600px', 
					height: '400px'
				}, 500); 
			} , function() {
			$("#pageflip img").stop() 
				.animate({
					width: '120px', 
					height: '80px'
				}, 220);
			$(".msg_block").stop() 
				.animate({
					width: '120px', 
					height: '80px'
				}, 200);
			});
		});
