/**
2 * @author egreiner
3 */

(function($){
	$.musa_global={
		_init:function(){			
			$.musa_global.popContent();
			$.musa_global.closeContent();	
		},
		 // open content layer
		popContent:function(){ 
			$("#pop").click(function () {
				$("#pop_content").fadeIn("slow");
		    });			           
		},
		
		// close content layer
		closeContent:function(){
			$("#close_win").click(function () {
				$("#pop_content").fadeOut("slow");
		    });
		}

	}
	$.musa_global._init();	
	
})(jQuery);



