/* 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: '240px', 
				height: '252px'
			}, 500); 
		} , function() {
		$page_cornr("#pagecornr img").stop() 
			.animate({
				width: '130px', 
				height: '135px'
			}, 220);
		$page_cornr(".bg_msg").stop() 
			.animate({
				width: '130px', 
				height: '130px'
			}, 200);
	});
 
	
});
