jQuery(document).ready(function($) {
	$("a.email").click(function(event){
		$("#emailbox").show();
		return false;
	});
	$("a.close").click(function(event){
		$("#emailbox").hide();
		return false;
	});
	$('#image_rotate').innerfade({
		speed: 'slow',
		timeout: 8000,
		type: 'sequence',
		containerheight: '279px'
	});
});
