$("#temp-slide").fancybox({ 
	"padding": 0, 
	"width": 750,
	"height": 422,
	"type": "iframe"
});
$('#read-more').click(function() {
	/* Displays read more text */
	$('#more-info').slideToggle('fast');
	return false;
});
$("#seen").click(function() {
	$(this).animate({
		top: "-400px"
	}, 500 );
	$("#hidden").animate({
		top: "0"
	}, 500 );
	return false
});
$("#backup").click(function() {
	$("#seen").animate({
		top: "0"
	}, 500 );
	$("#hidden").animate({
		top: "400px"
	}, 500 );
	return false
});
$("#seen").mouseover(function(){
	$("#seen-hover").fadeIn(1000);
});
$("#seen").mouseleave(function(){
	$("#seen-hover").fadeOut(1000);
});
