if(typeof jQuery != 'undefined') {
	$(function() {
		if(!$.support.hrefNormalized) {
			$('#header li:not(.skip + li)').prepend('/');
			$('#footer li:not(.skip + li)').prepend('/');
		}
		$('#concertlist li').each(function() {
			if($(this).children('.title').has('a').length) {
				$(this)
					.hover(function() {
						$(this).toggleClass('hover');
					})
					.click(function() {
						window.location = $(this).find('.title a').attr('href');
					});
			}
		})
		$('#info .section a').hover(function() {
			$(this).closest('.section').toggleClass('hover');
		});
		$('img[style$="right;"],img[style$="right"]').addClass('right');
		$('img[style$="left;"],img[style$="left"]').addClass('left');
	});
}
