﻿$(document).ready(function() {
	
	// получаем звезды
	our_stars = $('img[src*=en_logo]:eq(0)').attr('src');
    our_stars = our_stars.match(/en_logo(\d+)/)[1];
	
	// выводим звезды
	$('#ourhead .star div').animate({width: (our_stars * 20) + 'px'}, 2500);

	// двигаем панораму мышкой =)
	$('#ourhead').mousemove(function(e) {
		move = e.pageX * 100 / $('#ourhead .back').width();
		$('#ourhead .back').css({backgroundPosition: move + '% 0'});
	});

});
