jQuery(function($) {
    $('ul.submenu li').ahover({toggleEffect: 'height', moveSpeed: 75, toggleSpeed: 250});
});

$(document).ready(function(){

//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '147px', 
				height: '147px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '50px', 
				height: '52px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
	});

	
});

$(document).ready(function() {

	$("a.pictures").fancybox({
		'hideOnContentClick': false
	});

});