$(document).ready(function() {
	var count = $('.movieWrapper').length;
//	var currentId = 1;
	$('#movie_' + currentId).show();
	$('#prev').click(function(){
		$('#movie_' + currentId).hide();
		currentId = currentId == 0 ? count - 1 : currentId - 1;
		$('#movie_' + currentId).fadeIn();
		return false;					
	});
	$('#next').click(function(){
		$('#movie_' + currentId).hide();
		currentId = currentId == count - 1 ? 0 : currentId + 1;
		$('#movie_' + currentId).fadeIn();
		return false;
	});
	$('a.aBlank').click(function() {
		window.open($(this).attr('href'),'_blank');
		return false;
	});
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal',
		padding: 40,
		opacity: 0.75,
		showTitle: true,
		allowresize: true,
		counter_separator_label: ' of ',
		theme: 'sfoko'
	});
});
function sfokoMail(){
	document.write(String.fromCharCode(60,  97, 32, 104, 114, 101, 102, 61, 34, 109, 97, 105, 108, 116, 111, 58, 115, 102, 111, 107, 111, 64, 115, 102, 111, 107, 111, 46, 99, 111, 109, 46, 112, 108, 34, 62, 115, 102, 111, 107, 111, 64, 115, 102, 111, 107, 111, 46, 99, 111, 109, 46, 112, 108, 60, 47, 97, 62));
}