$(document).ready(function() {
													 
	/*
	mailto script
	<a href="mailto:youremail(at)yourdomain.com" rel="email">your text here</a>
	*/
	$('a[rel=email]').each(function(){
		var email = $(this).attr("href");
		var email = email.substring(7,email.length);		
		var email = email.split('\(at\)');
		$(this).click(function () {       
			 document.location = "mailto:" + email[0] + "@" + email[1];	
			 return false;
    });
	});
	
	/*
	change album image and arrow style
	*/
	$('a.album').hover(function(){
		$('span.wrapper', this).css('background-image', 'url(../images/album-arrow-hover.gif)');
		$('span.wrapper img', this).css('border', '1px solid #ff000a');
	},
	function(){
		$('span.wrapper', this).css('background-image', 'url(../images/album-arrow.gif)');
		$('span.wrapper img', this).css('border', '1px solid #000000');
	});

});



