jQuery.fn.PrimaryNav = function() {

    jQuery(this).hover(function() {
        jQuery(this).addClass("hover");
        jQuery('> .top', this).addClass("open");
        jQuery('ul:first', this).css('visibility', 'visible');
    }, function() {
        jQuery(this).removeClass("hover");
        jQuery('.open', this).removeClass("open");
        jQuery('ul:first', this).css('visibility', 'hidden');
    });

}	

/*$.fn.PrimaryNav = function() {

    $(this).hover(function() {
        $(this).addClass("hover");
        $('> .top', this).addClass("open");
        $('ul:first', this).css('visibility', 'visible');
    }, function() {
        $(this).removeClass("hover");
        $('.open', this).removeClass("open");
        $('ul:first', this).css('visibility', 'hidden');
    });

}	*/