
$(document).ready(function() {
    //Initiating
    Cufon.replace('ul.parent');
    $('.child').hide();
    $('#active').show();
	
	
    $(".parent li").mouseover(function(){
        $('.child').hide();
        var hover = '.' + $(this).attr("id");
        $(hover).show();
    });
	
    $(".topnav").mouseleave(function(){
		
		
        $('.child').hide();
        $('#active').show();
    });
                
    (function() {
        var po = document.createElement('script');
        po.type = 'text/javascript';
        po.async = true;
        po.src = 'https://apis.google.com/js/plusone.js';
        var s = document.getElementsByTagName('script')[0];
        s.parentNode.insertBefore(po, s);
    })();

});
