$(window).ready(function() {
	$.each($('.screenshot-list a'),function(index, element){
		$(this).mouseenter(function(event){
			$('.phone-frame img').removeClass('current');
			$('.screenshot-list a').removeClass('active');
			$($('.phone-frame img').get(index)).addClass('current');
			$($('.screenshot-list a').get(index)).addClass('active');
		});
		$(this).click(function(event){
			event.preventDefault();
		});
	});
});
