var Intercity = {
	baseWebDir : location.hostname,
	baseDir : '',

	void_function : function() {}
};

if (location.hostname != 'localhost') {
	Intercity.httpWebDir = 'http://'+Intercity.baseWebDir + (location.port != '' && location.port != 80 ? ':'+location.port + '/' : '/') + Intercity.baseDir;
	Intercity.httpsWebDir = 'https://'+Intercity.baseWebDir + (location.port != '' && location.port != 80 ? ':'+location.port + '/' : '/') + Intercity.baseDir;
} else {
	Intercity.httpWebDir = 'http://'+Intercity.baseWebDir + (location.port != '' && location.port != 80 ? ':'+location.port + '/' : '/awesome/');
	Intercity.httpsWebDir = 'https://'+Intercity.baseWebDir + (location.port != '' && location.port != 80 ? ':'+location.port + '/' : '/awesome/');
}
Intercity.fullWebDir = location.protocol == 'http:' ? Intercity.httpWebDir : Intercity.httpsWebDir

Intercity.awesome = {
	mouseover_nav : function(e) {
		var klass = $(this).attr('class').split(' ');
		klass = klass[0];

		$('a.' + klass).addClass('highlight');
		$('img#side-mapnz').attr('src', Intercity.fullWebDir + 'images/side-mapnz-' + klass + '.gif');
	},

	mouseout_nav : function(e) {
		var klass = $(this).attr('class').split(' ');
		klass = klass[0];
		$('a.' + klass).removeClass('highlight');
		$('img#side-mapnz').attr('src', Intercity.fullWebDir + 'images/side-mapnz.gif');
	}
};

$(document).ready(function() {
	$('div#sideContent>div.links-activites>ul>li').mouseover(Intercity.awesome.mouseover_nav).mouseout(Intercity.awesome.mouseout_nav);
	
});
