$(document).ready(function() {

//Partner logo fade

	$(".partner_logo a").hover(
		function() {
			$(this).parent().fadeTo("fast", 1);
		},
		function() {
			$(this).parent().fadeTo("fast", 0.5);
		}
	);


//Concertina

	$("#lineup .more_info").hover(
		function() {
			$(this).addClass("gig_hover");
		},
		function() {
			$(this).removeClass("gig_hover");
		}
	);

	$("#lineup .weblink").hover(
		function() {
			$(this).addClass("gig_hover");
		},
		function() {
			$(this).removeClass("gig_hover");
		}
	);

	$("#lineup .weblink").click(function(e) {
		e.preventDefault();
		goto = $(this).find(".moreinfo a").attr("href");
		window.open(goto, "_blank");
	});

	$("#lineup .more_info").click(function(e) {
		e.preventDefault();
		$(this).hide();
		$(this).next().fadeIn("medium");
	});

	$(".close_details a").click(function(e) {
		e.preventDefault();
		$(this).parent().parent().fadeOut("fast", function() {
			$(this).prev().show();
		});
	});

//Animated Scroll

	$(".scroll-to").click(function(e) {
		e.preventDefault();
		where = $(this).attr("href");
		$.scrollTo(where, 400, {offset: -20});
	});

});
