/**
 * jQuery - Config file
 */
jQuery(function($) {

	/**
	 * Window Open
	 */
	var rhostname = new RegExp('^http:\/\/'+ location.host);
	$('a[href^="http"]').each(function() {
		if (rhostname.test(this.href)) {
			return;
		}
		$(this).click(function() {
			window.open(this.href, null);
			return false;
		});
	});

	/**
	 * Fragment link
	 */
	$('a[href^="#"]').click(function() {
		$('html, body').animate({scrollTop: $($(this).attr('href')).position().top}, 500, 'swing');
		return false;
	});

	/**
	 * Image Rollover
	 */
	$('a img', '.nav').rollover();

});
