$(function() {
	$('.screenshots ul li img').click(function() {
		$('.screenshots ul li img').removeClass('active');
		$(this).addClass('active');
		$('.screenshots .iPhone').html('<img src="' + this.src + '" border="0" />');
	});
	$('.screenshots ul li:first img').click();
});