$(document).ready(function()
{
	$("#contact").validator({
		lang:			'de',
		position:		'bottom center',
		messageClass:	'error',
		speed:			1200
	});
	$('.content img').each(function()
	{
		var rotate = 6-Math.round(Math.random()*12);
		while ( rotate == 0 )
		{
			var rotate = 6-Math.round(Math.random()*12);
		}
		$(this).attr('style','-webkit-transform: rotate('+rotate+'deg); -moz-transform: rotate('+rotate+'deg); -o-transform: rotate('+rotate+'deg);');
	});
});
