$(document).ready(function(){
	$('.phone .screen-big').css('background', 'url(' + $('.screens-video ul li a:first').attr('rel') + ')').fadeIn();
		
	$('.screens-video ul li a').click(function(){
		var screen = $(this).attr('rel');
		$('.phone .screen-big').fadeOut(function(){
			$(this).css('background', 'url('+screen+')');
		});
		$('.phone .screen-big').fadeIn();
	});
})