// home.layout.js


$(window).resize(function(){
	resizeBox();
});

$(document).ready(function(){
	
	// Box richtige Höhe geben
	resizeBox();
	
	
	
	// Toggle
	fullHeight = $("#box").height() + 50;
	
	$("#box").addClass('boxHidden');
	$("#content").addClass('contentHidden');
	
	// onClick
	$(".toggler").click(function(){
		// hide
		if( $('.toggler').is('.contentShown') ) {
			toggleHide();
		}
		// show
		else {
			toggleShow();
		}
		return false;
	});
	
		// onClick
	$("#box").mouseenter(function(){
		// hide
		if( $('.toggler').is('.contentShown') ) {
			toggleHide();
		}
		// show
		else {
			toggleShow();
		}
		return false;
	});
	
	// onMouseOver
	/*$("#box").hover(
		function(){
			toggleHide();
		},
		
		function(){
			toggleShow();
		}
		
	);*/
	
	
	// Empty Content
	if ($('#content').html().length <= 7)
	{
		$('#box').addClass('hidden');
	}
});


// Toggle on Start
$('#background .tx-rbflashobject-pi1-swf_altcontent embed').ready(function(){
	toggleShow();
});
