$(document).ready(function() {
	// Cufon font replacement
	Cufon.replace('h1, #content h2, #right-bar h2');
	
	/* Fix PNG transparency in IE 6 */
	$('img[src$=.png], #mask').ifixpng();
	
	/* open new links in a popup window */
	$('a[rel=new]').click(function() {
		window.open($(this).attr('href'));
        return false;
	});
	
	/* poodle thoughts! */
	$("#poodle span").hide();
	$("#poodle").hover(
		function(){
			$(this).find('img').attr('src', '/images/graphic_poodle_wag.png').siblings("span").fadeIn();
		}, function() {
			$(this).find("img").attr('src', '/images/graphic_poodle.png').siblings("span").fadeOut();
		}
	);
});