$(document).ready(function ()
{


    /* open rel=external in new window */
    $('a[rel=external]').attr('target', '_blank');

    //cufon
    Cufon.set('font-family', 'SkinnyCow');

    Cufon.replace('.cufon', { hover: true });
    
    
    $(".bubble").hide();
    $('.icon').mouseover(function ()
    {
        $(this).find('.bubble').show();
    });
    
    $('.icon').mouseout(function ()
    {
        $(this).find('.bubble').hide();
    });
		
		

});  //end


