$(document).ready(function() {
		//Icons-Spielerei
	if($("#box_top_icons").length>0){		
		addWindowCheck();
		initspielerei();		
	}
});
	
function slidedown(){
	$("html").css('overflow-x', 'hidden');
	$('#box_top_icons').removeClass('icons_js_is_off');
	
	$('#box_top_icons').css({
			'display' : 'block',
			'position' : 'fixed'
	});
	
	$("#box_top_icons").addClass('verticalcenter');
	
	$('#box_top_icons a')   
	.hover(function() {
		$("#box_top_icons").stop().animate({ height: 220 }, '500');		
		$(this).stop().animate({ top: 0 }, '500');
	}, function() {
		$("#box_top_icons").stop().animate({ height: 55 }, '350');
		$(this).stop().animate({ top: -160 }, '350');
	});
}


