$(document).ready(function(){
	
	// SCREENSHOTS > TRAILER TOGGLER
	$('#screenshotsContainer ul li div:first').fadeIn(300);
	$('#screenshotsContainer ul li img:first').animate({opacity:0.4},300);
	$('#screenshotsContainer ul li').click(function(){
		$('#screenshotsContainer ul li div').fadeOut(400);
		$('#screenshotsContainer ul li img').animate({opacity:1},100);
		$(this).find('img:first').animate({opacity:0.4},100);
		$(this).find('div').fadeIn(400);
	});
	// SCREENSHOTS GALLERY
	$('#btnScreenshots').click(function(){
		$('#trailerContainer').fadeOut(400);
		setTimeout("$('#screenshotsContainer').fadeIn(400);",500);
	});
	$('#btnTrailer').click(function(){
		$('#screenshotsContainer').fadeOut(400);
		setTimeout("$('#trailerContainer').fadeIn(100);",1000);
	});
	// WALLPAPERS HOVER
	$('#mobileContent ul li img').hover(
		function(){
			$(this).animate({opacity:0.5},150);
		},
		function(){
			$(this).animate({opacity:1},150);
		}
	);
	// SCREENSHOTS PAGER
	$('#nextScreensLink').click(function(){
		$('#screens_a').hide();
		$('#nextScreensLink').hide();
		$('#screens_b').fadeIn(300);
		$('#prevScreensLink').fadeIn(300);
	});
	$('#prevScreensLink').click(function(){
		$('#screens_b').hide();
		$('#prevScreensLink').hide();
		$('#screens_a').fadeIn(300);
		$('#nextScreensLink').fadeIn(300);
	});

});
