// JavaScript Engine

$(document).ready(function(){
	
	Cufon.replace("#sidebar h3", {
        hover : true
    });

	// :first-child fix for IE on nav
	$('#menu li:first-child').addClass('first-child');
	// Suckerfish dropdowns IE :hover fix
	$('#menu li').mouseover(function() {
		$(this).addClass('hover');
	});
	$('#menu li').mouseout(function() {
		$(this).removeClass('hover');
	});
	
});
	

