﻿$(document).ready(function () {

	$('#a-start').hover(
				function () {
					$('#a-start').stop().animate({ 'backgroundPosition': '(0 0)' }, { duration: 300 });
				},
				function () {
					$('#a-start').stop().animate({ 'backgroundPosition': '(0 -57)' }, { duration: 300 });
				}
			);

	$('#a-about').hover(
				function () {
					$('#a-about').stop().animate({ 'backgroundPosition': '(-60 0)' }, { duration: 300 });
				},
				function () {
					$('#a-about').stop().animate({ 'backgroundPosition': '(-60 -57)' }, { duration: 300 });
				}
			);

	$('#a-tickets').hover(
				function () {
					$('#a-tickets').stop().animate({ 'backgroundPosition': '(-145 0)' }, { duration: 300 });
				},
				function () {
					$('#a-tickets').stop().animate({ 'backgroundPosition': '(-145 -57)' }, { duration: 300 });
				}
			);

	$('#a-movies-and-images').hover(
				function () {
					$('#a-movies-and-images').stop().animate({ 'backgroundPosition': '(-215 0)' }, { duration: 300 });
				},
				function () {
					$('#a-movies-and-images').stop().animate({ 'backgroundPosition': '(-215 -57)' }, { duration: 300 });
				}
			);

	$('#a-downloads').hover(
				function () {
					$('#a-downloads').stop().animate({ 'backgroundPosition': '(-310 0)' }, { duration: 300 });
				},
				function () {
					$('#a-downloads').stop().animate({ 'backgroundPosition': '(-310 -57)' }, { duration: 300 });
				}
			);

	$('#a-competition').hover(
				function () {
					$('#a-competition').stop().animate({ 'backgroundPosition': '(-389 0)' }, { duration: 300 });
				},
				function () {
					$('#a-competition').stop().animate({ 'backgroundPosition': '(-389 -57)' }, { duration: 300 });
				}
			);

	$('#a-press').hover(
				function () {
					$('#a-press').stop().animate({ 'backgroundPosition': '(-448 0)' }, { duration: 300 });
				},
				function () {
					$('#a-press').stop().animate({ 'backgroundPosition': '(-448 -57)' }, { duration: 300 });
				}
			);

	$('#a-webshop').hover(
				function () {
					$('#a-webshop').stop().animate({ 'backgroundPosition': '(-500 0)' }, { duration: 300 });
				},
				function () {
					$('#a-webshop').stop().animate({ 'backgroundPosition': '(-500 -57)' }, { duration: 300 });
				}
			);

	$('#a-contact').hover(
				function () {
					$('#a-contact').stop().animate({ 'backgroundPosition': '(-576 0)' }, { duration: 300 });
				},
				function () {
					$('#a-contact').stop().animate({ 'backgroundPosition': '(-576 -57)' }, { duration: 300 });
				}
			);

});
