/**
 * Java-Scripte hier unterbringen!!!
 */
if( "undefined" != typeof jQuery ) {
	
	$( document ).ready( function() {
		
		// Rechten Bereich einblenden
		$( '#contentRight' ).fadeIn( 1500 );
		
		// Fullscreen nachladen
		$.ajax({
			"url": "templates/mainpoint/js/jquery/fullscreenr.js",
			"dataType": "script",
			"cache": true,
			"success": function() {
				var options = {
					width : 1024,
					height : 683,
					bgID : '#background'
				};
				
				$.fn.fullscreenr( options );
			}
		});
	});
}

