
function close_notification(){
        $(".close").click(function () {
            $(this).parent().fadeOut('slow', function() {});
        })
    }
    function navigation() {
        $("ul.topnav li").hover(function() { 
            $(this).find("ul.subnav").show();  
            $(this).hover(function() { 
                }, function(){ 
                    $(this).parent().find("ul.subnav").hide(); 
                });  
        });  
    }
    
var GS = function ()
{
    
    
    
   return { init: init };
	
	function init ()
	{
            close_notification();
            navigation();
        }	
}();
