$(document).ready(function()

{

// Button Vorverkauf


$(".ticketbutton").hover(function() {
	$(this)
		.animate({
			marginTop: '-55' 
			
		}, 450); 

	} , function() {
		$(this).animate({
			marginTop: '-70'
			
		}, 200);
});



$('.ticketbutton').rotate({maxAngle:0,minAngle:-10,
	bind:
	[
	{"mouseover":function(){$(this).rotate(-10);}},
	{"mouseout":function(){$(this).rotate(0);}}
	]
	});

 $('.active .menuimage').rotate(-10);


// Drehung der Menu Images
       
	$('li:not(.active) img.menuimage').rotate({maxAngle:0,minAngle:-10,
	bind:
	[
	{"mouseover":function(){$(this).rotate(-10);}},
	{"mouseout":function(){$(this).rotate(0);}}
	]
	});

 $('.active .menuimage').rotate(-10);

});