jQuery.noConflict();
jQuery(document).ready(function() {
    jQuery('a.loginBtn').click(function(e) {
        e.preventDefault();
        jQuery('#modalLogin').modal(jQuery.modal.defaults, { 'persist': true });
    });

//    jQuery("#pageflip").hover(function() {
//        jQuery("#pageflip img , .msg_block").stop()
//			.animate({
//			    width: '307px',
//			    height: '309px'
//			}, 500);
//    }, function() {
//        jQuery("#pageflip img").stop()
//			.animate({
//			    width: '50px',
//			    height: '52px'
//			}, 220);
//        jQuery(".msg_block").stop()
//			.animate({
//			    width: '50px',
//			    height: '50px'
//			}, 200);
//    });
});