$().ready(function() {
    
	$(".links, .side_block_orange, .side_block_gold, .side_block_beige, .side_block_grey").click(function() {
		window.location=$(this).find("a").attr("href");return false;
	});
    
    $("#pageflip").hover(function() { //On hover...
    	$("#pageflip img , .msg_block").stop()
    		.animate({ //Animate and expand the image and the msg_block (Width + height)
    			width: '300px',
    			height: '319px'
    		}, 500);
    	} , function() {
    	$("#pageflip img").stop() //On hover out, go back to original size 50x52
    		.animate({
    			width: '130px',
    			height: '132px'
    		}, 220);
    	$(".msg_block").stop() //On hover out, go back to original size 50x50
    		.animate({
    			width: '130px',
    			height: '127px'
    		}, 160); //Note this one retracts a bit faster (to prevent glitching in IE)
    });
    	
});


if (top.location != self.location) {
    top.location.replace(self.location); // pop to top
}
