/**
 * Various transitions and effects to make the Papell theme look pretty
 */
jQuery.noConflict();

// Fade the color of all links on hover
jQuery(document).ready(function(){
    jQuery("a").not(".current_page_item a").hover(function(){
        jQuery(this).stop().animate({
            color: '#B51C1C'
        },200);
    },function(){
        jQuery(this).stop().animate({
            color: "#FFF"}, 200);
    });
    jQuery('#content').hide().fadeIn(500);
});
