$('#scroller-up').live('click', function() {
	var pos = $('#scroll').position();
	var amt = 295;
	if ($('.content-review, .content-script').length > 0)
		amt = 195;
	if (pos.top < 0)
		$('#scroll').animate({top: (pos.top + amt) + 'px'}, 200);
});
$('#scroller-down').live('click', function() {
	var pos = $('#scroll').position();
	var amt = 295;
	if ($('.content-review, .content-script').length > 0)
		amt = 195;
	var newpos = pos.top - amt;
	if (newpos >= -1* $('#scroll').height())
		$('#scroll').animate({top: newpos + 'px'}, 200);
});
var sliding = false;
$(document).ready(function() {
	$('.coverdefault').removeClass('coverdefault');
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({bottom:'0'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({bottom:'-32px'},{queue:false,duration:160});
	});
	$('#vday').fadeIn(1000);
	$('#vday-close').click(function() {
		$('#vday').fadeOut(1000);
		var expires_date = new Date(new Date().getTime() + 7200000);
		document.cookie = "vd=1;expires=" + expires_date.toGMTString() + ";path=/;domain=matteos.com.au" ;
	});
});

