
		$(document).ready(function() {

			$("#info").animate({
				opacity: "0.7"
			}, 400);


			if($('input:radio').length!=0) $('input:radio').checkbox({cls:'jquery-radio'});
			if($('input:checkbox').length!=0) $('input:checkbox').checkbox({cls:'jquery-checkbox'});
			if($('.radioleft input:radio').length!=0) $('.radioleft input:radio').checkbox({cls:'jquery-reise1'});
			if($('.radioright input:radio').length!=0) $('.radioright input:radio').checkbox({cls:'jquery-reise2'});

			$('.tooltip').each(function() {

				$(this).qtip({
					content: $("#" + $(this).attr("rel")).html(),
					style: {
						padding: 5,
						background: '#FFFFFF',
						color: 'black',
						width: $("#" + $(this).attr("rel")).width(),
						border: {
							width: 2,
							radius: 2,
							color: '#E3C990'
						},
						tip: {
							corner: 'bottomMiddle',
							size: { x: 12, y: 6 }
						}						
					},
					position: {
						corner: {
							target: 'topMiddle',
							tooltip: 'bottomMiddle'
						}	
					},
					show: {
						delay: 1
					},
					hide: {
						delay: 1
					}
				});

			});				

		});
