$(document).ready(function () {
	
	$('a.trocarColecao').hover(
		function() {
			$(this).animate({'right':0},100);
		},function() {
			$(this).stop().animate({'right':-15},100);
		}
	);
	
	function position()
	{
		var headerH = $('#header').height();
		var contentH = $('#content').height();
		var contentWrappH = $(window).height();
		var area = contentWrappH - $('#nav').height();
		var center = ((area/2) - contentH/2)-headerH;
		$('div.wrapp').css({'min-height':contentWrappH});
		
		if(area>(contentH+200)) {
			$('#content').css({'marginTop':center});
		}
		if($(window).width()>960) {
			$('a.trocarColecao').css({'opacity':1});
		} else {
			$('a.trocarColecao').css({'opacity':0.5});
		}
	}
	
	$(window).resize(function() {
		position();
	});
	
	position();
 
 
});



