/* Page Cornr function */

$page_cornr = jQuery.noConflict();

$page_cornr(document).ready(function(){

        $page_cornr("#pagecornr").hover(function() {
                $page_cornr("#pagecornr img , .bg_msg").stop()
                        .animate({
                                width: '307px',
                                height: '319px'
                        }, 500);
                } , function() {
                $page_cornr("#pagecornr img").stop()
                        .animate({
                                width: '75px',
                                height: '72px'
                        }, 220);
                $page_cornr(".bg_msg").stop()
                        .animate({
                                width: '75px',
                                height: '70px'
                        }, 200);
        });


});