$(document).ready(onReady);

var SIZE_OVER	= 300;
var SIZE_OUT	= 290;
var overOffset	= (SIZE_OUT - SIZE_OVER) / 2;

function onReady() {

	$("#album1").mouseover(function () {
		$("#download1").stop().fadeIn(300);
		$("#overlay").stop().fadeIn(200);
		$("#player").stop().fadeTo(150, .01);
		$("#album2").stop().fadeTo(150, .1);
		$("#album3").stop().fadeTo(150, .1);
		$("#album1").stop().animate({
			opacity: 1,
			height: SIZE_OVER,
			width: SIZE_OVER,
			marginLeft: overOffset,
			marginRight: overOffset,
			marginTop: overOffset,
			marginBottom: overOffset
		}, 150);
	});

	$("#album1").mouseout(function () {
		$("#download1").stop().fadeOut(100);
		$("#overlay").stop().fadeOut(200);
		$("#player").stop().fadeTo(150, 1);
		$("#album2").stop().fadeTo(150, 1);
		$("#album3").stop().fadeTo(150, 1);
		$("#album1").stop().animate({
			height: SIZE_OUT,
			width: SIZE_OUT,
			marginLeft: 0,
			marginRight: 0,
			marginTop: 0,
			marginBottom: 0
		}, 200);
	});

	$("#album2").mouseover(function () {
		$("#download2").stop().fadeIn(300);
		$("#overlay").stop().fadeIn(200);
		$("#player").stop().fadeTo(150, .01);
		$("#album1").stop().fadeTo(150, .1);
		$("#album3").stop().fadeTo(150, .1);
		$("#album2").stop().animate({
			opacity: 1,
			height: SIZE_OVER,
			width: SIZE_OVER,
			marginLeft: overOffset,
			marginRight: overOffset,
			marginTop: overOffset,
			marginBottom: overOffset
		}, 150);
	});

	$("#album2").mouseout(function () {
		$("#download2").stop().fadeOut(100);
		$("#overlay").stop().fadeOut(200);
		$("#player").stop().fadeTo(150, 1);
		$("#album1").stop().fadeTo(150, 1);
		$("#album3").stop().fadeTo(150, 1);
		$("#album2").stop().animate({
			height: SIZE_OUT,
			width: SIZE_OUT,
			marginLeft: 0,
			marginRight: 0,
			marginTop: 0,
			marginBottom: 0
		}, 200);
	});

	$("#album3").mouseover(function () {
		$("#download3").stop().fadeIn(300);
		$("#overlay").stop().fadeIn(200);
		$("#player").stop().fadeTo(150, .01);
		$("#album1").stop().fadeTo(150, .1);
		$("#album2").stop().fadeTo(150, .1);
		$("#album3").stop().animate({
			opacity: 1,
			height: SIZE_OVER,
			width: SIZE_OVER,
			marginLeft: overOffset,
			marginRight: overOffset,
			marginTop: overOffset,
			marginBottom: overOffset
		}, 150);
	});

	$("#album3").mouseout(function () {
		$("#download3").stop().fadeOut(100);
		$("#overlay").stop().fadeOut(200);
		$("#player").stop().fadeTo(150, 1);
		$("#album1").stop().fadeTo(150, 1);
		$("#album2").stop().fadeTo(150, 1);
		$("#album3").stop().animate({
			height: SIZE_OUT,
			width: SIZE_OUT,
			marginLeft: 0,
			marginRight: 0,
			marginTop: 0,
			marginBottom: 0
		}, 200);
	});
}

