jQuery(document).ready(function($) {
	
	
	/**
	 * Hover shops on top map.
	 */
	$("#header .map .shop").hover(function() {
		$("#header .map .ourShops span").text($(this).attr("title"));
		$("#header .map .ourShops").addClass("active");
	}, function() {
		$("#header .map .ourShops span").text("Naše pobočky");
		$("#header .map .ourShops").removeClass("active");
	});
	
	
	/**
	 * Clicking on map (not on specific shop) will reload to contact page.
	 */
	$("#header .map").click(function() {
		if (!$("#header .map .ourShops").hasClass("active")) window.location.href = _prefix+"cms/kontakt.html";
	});
	
	
});
