$(document).ready(function(){

//Larger thumbnail preview 
$("ul.thumb li#ontour").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-1px', 
			marginLeft: '-1px', 
			top: '50%', 
			left: '20%', 
			width: '92px', 
			height: '21px',
			padding: '0px' 
		}, 0);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '88px', 
			height: '19px', 
			padding: '0px'
		}, 200);
});
$("ul.thumb li#artists").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-1px', 
			marginLeft: '-1px', 
			top: '50%', 
			left: '20%', 
			width: '74px', 
			height: '21px',
			padding: '0px' 
		}, 0);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '20%', 
			width: '70px', 
			height: '19px', 
			padding: '0px'
		}, 200);
});
$("ul.thumb li#news").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-1px', 
			marginLeft: '-1px', 
			top: '10%', 
			left: '50%', 
			width: '62px', 
			height: '21px',
			padding: '0px' 
		}, 0);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '59px', 
			height: '19px', 
			padding: '0px'
		}, 200);
});
$("ul.thumb li#about").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-1px', 
			marginLeft: '-1px', 
			top: '10%', 
			left: '50%', 
			width: '70px', 
			height: '21px',
			padding: '0px' 
		}, 0);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '67px', 
			height: '19px', 
			padding: '0px'
		}, 200);
});
$("ul.thumb li#logo").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-1px', 
			marginLeft: '-1px', 
			top: '10%', 
			left: '50%', 
			width: '140px', 
			height: '86px',
			padding: '0px' 
		}, 0);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '137px', 
			height: '84px', 
			padding: '0px'
		}, 200);
});

//Swap Image on Click
	$("ul.thumb li a").click(function() {
		return true;		
	});
 
});
