/* retailers.view.js */

$(document).ready(function() {
	
	/*loc = jQuery.url.attr('alt');
	
	if(loc != '') {
		$('#locations .overlay').hide(300);
		$('#locations #' + loc).show(300);
	}*/
	
	$('map area').mouseover(function() {
		$('#tx_mwimagemap_img_3311').attr('src','/fileadmin/image_map/'+$(this).attr("alt")+'.png');
		$('#locations .overlay').hide(300);
		$('#locations #' + $(this).attr("alt")).show(300);
		return false;
	});
	$('map area').mouseout(function() {
		$('#locations .overlay').hide(300);
		$('#tx_mwimagemap_img_3311').attr('src','/fileadmin/image_map/blank.png');
		//$('#locations #' + $(this).attr("alt")).show(300);
		return false;
	});
	
	$('#locations .overlay .close').click(function() {
		$(this).parent().hide(300);
		return false;
	});
});
