$(document).ready(function() {
	NCH.init();
});

var NCH = NCH || {};
var NCH = {
	init: function() {
		this.positionFooter();
		this.bindEvents();
	},

	bindEvents: function() {
		$('#menu > li').hover(
			function() {
				if ($(this).find('ul:animated').size() == 0)
					$(this).find('ul').fadeIn(200);
			},
			function() {
				$(this).find('ul').fadeOut(400);
			}
		);
	
		$(window).scroll(this.positionFooter).resize(this.positionFooter);
		
		$("a[href*='http://']:not([href*='" + location.hostname + "']), [href*='https://']:not([href*='" + location.hostname + "'])").attr('target','_blank');
	},
	
	positionFooter: function() {
		if ($(document.body).height() < $(window).height()) {
			$('#footer').css({position:'absolute', bottom:0});
		}
	}
}
