$(document).ready(function() {
		$('#navNews').css({'color':"#111111"});
		setTimeout(function(){slideSwitch()},500);
		//$('#aboutSnippet').click(function(){loadAbout();});
		$('#onSale').hover(
				function(){doNothing();},
				function(){$('#potraitFilled').fadeIn(600);}
			);
		$('#magOne').hover(
				function(){$('#magOneContent').fadeIn(600);$('#potraitBlank').fadeOut(400);$('#potraitFilled').fadeOut(400);},
				function(){$('#magOneContent').fadeOut(400);}
			);
		$('#magTwo').hover(
				function(){$('#magTwoContent').fadeIn(600);$('#potraitBlank').fadeOut(400);$('#potraitFilled').fadeOut(400);},
				function(){$('#magTwoContent').fadeOut(400);}
			);
		
});


function slideSwitch() {
	var $active = $('#portrait DIV.active');
	
	if($active.length == 0) $active = $('#portrait DIV:last');
	
	var $next = $active.next().length ? $active.next() : $('#portrait DIV:first');
	
	$active.addClass('last-active');
	
	$next.css({opacity: 0.0})
		.addClass('active')
		.animate({opacity: 1.0}, 2000, function() {
			$active.removeClass('active last-active');
		});
}

function doNothing(){};