$(function(){
	$('#gallerypage .galleryitem a').hover(function(){
		$(this).parent().animate({backgroundColor:'#CD0921'},10);
		$(this).siblings().children('.date').animate({color:'#e68490'},10);
		$(this).siblings().children('.desc').animate({color:'#f2c1c7'},10);
	},function(){
		$(this).parent().animate({backgroundColor:'#222222'},200);
		$(this).siblings().children('.date').animate({color:'#666666'},200);
		$(this).siblings().children('.desc').animate({color:'#888888'},200);
	});
	
	$('#checkoutbuttonjs').click(function(){
		if( $('#postagestatusjs').hasClass('postageset') ) {
			return true;
		} else {
			alert('Please select a postage zone, then press "Update" before proceeding to the checkout.');
			return false;
		}
	});
	
	$('#postagetext').css('display','none');
	$('#postagetrigger').click(function(){
		if ( $('#postagetext').is(':visible') ) {
			$('#postagetext').fadeOut(250);
		} else {
			$('#postagetext').fadeIn(250);
		}
		return false;
	});		
	$('#postageclose').click(function(){
		$('#postagetext').fadeOut(250);
		return false;
	});
	
	$('.switch-yellow').click(function(){
		$('.features-diagram-yellow').show();
		return false;
	});
	$('.switch-grey').click(function(){
		$('.features-diagram-yellow').hide();
		return false;
	});
});