
$(document).ready(function(){
    

     
	 
	 $(".trigger").click(function(){
		$(".panel").toggle("fast");
		$(this).toggleClass("active");
		return false;
	});

	 
	 	 $(".triggeryd").click(function(){
		$(".panel").toggle("fast");
		$(this).toggleClass("active");
		return false;
	});

	 
	 
	 
	 $("#pageflip").hover(function() {
$("#pageflip img , .msg2_block").stop()
	.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
	} , function() {
$("#pageflip img").stop() 
			.animate({
				width: '60px', 
				height: '62px'
			}, 220);
$(".msg2_block").stop() 
			.animate({
				width: '60px', 
				height: '60px'
			}, 200);
});
	 
	 
	 
	 
    });    



