// JavaScript Document
jQuery.noConflict();

jQuery(document).ready(function(){	
	// Banner Slider
	//jQuery("#slider").easySlider({
//		auto: true,
//		continuous: true 
	//});
	
	
	
	// Map Tooltip
	jQuery('div#loc a').append('<span></span>');
	jQuery('div#loc a span').hide();

	jQuery('div#loc a').hover(
		function(){
			var info = jQuery(this).attr('title');
			jQuery(this).find('span').text(info);
			jQuery(this).find('span').animate({opacity: 'show', top: '-90'}, 'slow');
		},
		function(){
			jQuery(this).find('span').animate({opacity: 'hide', top: '-120'}, 'slow');
		}
	);
})

