$(document).ready(function(){  
  $(".info").animate({'opacity':0},0);	
	$(".info").hover(function(){		
		$(this).stop().animate({'opacity':1},300, 'swing');  				
	}, function() {                                            		
		$(this).stop().animate({'opacity':0},300, 'swing'); 
	});
	
	
	$(function(){
		$('a[rel=external]').click(function(){
			window.open(this.href);
			return false;
		});
	});
	var viewportWidth = $(window).width();
	var viewportHeight = window.innerHeight ? window.innerHeight : $(window).height();
	
	$("#prev").fixedBox({x: (viewportWidth-1000)/2-30, y: 380});
	$("#next").fixedBox({x: (viewportWidth-1000)/2+1011, y: 380});
	$("#postprev").fixedBox({x: (viewportWidth-1000)/2-30, y: 380});
	$("#postnext").fixedBox({x: (viewportWidth-1000)/2+1011, y: 380});


});
