// jQuery basic
jQuery.noConflict();

// map links
//fade out sibbling on map
jQuery(document).ready(function(){
	// opacity fade on links
	jQuery('.map-link').hover(function() {
		jQuery(this).children('a').children('span.title').hide();
		jQuery(this).children('a').children('span.hover-title').show();
		jQuery(this).siblings('.map-link').stop().fadeTo(400,0.7);
	}, function() {
		jQuery(this).children('a').children('span.hover-title').hide();
		jQuery(this).children('a').children('span.title').show();
		jQuery(this).siblings('.map-link').stop().fadeTo(100,1);
	});
});

