jQuery.noConflict();

jQuery(document).ready(function() {

jQuery('#menuTD a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			jQuery(this).stop().animate({backgroundPosition:"(0 -250px)"}, {duration:400})
			})
		.mouseout(function(){
			jQuery(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:400})
		})

jQuery(".locationLink1 .fadeBlok").hover(
	function() {
		jQuery(this).stop().animate({"opacity": "0.3"}, "normal");
	},
	function() {
		jQuery(this).stop().animate({"opacity": "0.0"}, "normal");
	});

jQuery(".locationLink2 .fadeBlok").hover(
	function() {
		jQuery(this).stop().animate({"opacity": "0.3"}, "normal");
	},
	function() {
		jQuery(this).stop().animate({"opacity": "0.0"}, "normal");
	});

jQuery(".locationLink3 .fadeBlok").hover(
	function() {
		jQuery(this).stop().animate({"opacity": "0.3"}, "normal");
	},
	function() {
		jQuery(this).stop().animate({"opacity": "0.0"}, "normal");
	});


	

});
