jQuery.noConflict();
  jQuery(document).ready(function($) {
  $('area').hover(
	function() { //handlerIn
	var imgheight = $(this).parent().parent().children().attr("height");
	var factor = $(this).attr("alt");
	var position = "0px "+imgheight*factor*-1 + "px";
	$(this).parent().parent().css('background-position', position);
	/*$(this).parent().parent().fadeTo(100, 0.1, function() {
		$(this).css('background-position', position);
		$(this).fadeTo(200, 1);
		});*/
	},
	function() { //handlerOut
	$(this).parent().parent().css('background-position', '0px 0px');
	/*$(this).parent().parent().fadeTo(500, 0.1, function() {
		$(this).css('background-position', '0px 0px');
		$(this).fadeTo(200, 1);
		});*/
	}
	);
	
	$(".ajax").each(function() {
		$url = $(this).attr("alt");
		$(this).load($url);
	});
	
	$('#hide').css('display', 'none');
	
});
