$(document).ready(function() {
	
	/* Remove active link color to top level menu item when submenu is active */
	if ($(".submenu li.active ul").length > 0 ) {
		$('.submenu > li.active > a').css('color', '#afa5a5');
	}
	
	/* Change map on click*/
	$('p.link').click(function() {
		/* remove active class from current map */
		$('p.link').removeClass("active");
		
		/*Hide current map */
		$('div.display').hide();
		
		/* Get selected city */
		var city = $(this).attr("id");
		
		/* Add active class to selected city */
		$(this).addClass('active');
		
		if (city=='hk') $('#map-' + city).html('<iframe width="598" height="550" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.at/maps?f=q&amp;source=s_q&amp;hl=de&amp;geocode=&amp;q=Hennessy+Road,+169,+Wan+Chai,+Hong+Kong&amp;aq=1&amp;sll=47.040182,7.34848&amp;sspn=0.769292,1.783905&amp;vpsrc=6&amp;ie=UTF8&amp;hq=&amp;hnear=169+Hennessy+Rd,+Hongkong&amp;t=m&amp;ll=22.286634,114.1749&amp;spn=0.04368,0.051241&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe>');
		else $('#map-' + city).html('<iframe width="598" scrolling="no" height="550" frameborder="0" src="http://maps.google.at/maps?f=q&amp;source=s_q&amp;hl=de&amp;geocode=&amp;q=Bahnhofstrasse+39,2540+Grenchen&amp;aq=&amp;sll=47.635784,13.590088&amp;sspn=12.175031,28.54248&amp;vpsrc=6&amp;ie=UTF8&amp;hq=&amp;hnear=Bahnhofstrasse+39,+2540+Grenchen,+Solothurn,+Schweiz&amp;t=m&amp;ll=47.298791,7.415771&amp;spn=0.512233,0.819855&amp;z=10&amp;iwloc=A&amp;output=embed" marginwidth="0" marginheight="0"></iframe>');
		
		/* Show selected map*/
		$('#map-' + city).show();
	});
	
});
