/*____TABNAVI ANIMATION____*/

$(document).ready(function() {

/*____BROWSERRESIZE ____*/

	jQuery.event.add(window, "load", resizeFrame);
	jQuery.event.add(window, "resize", resizeFrame);
	var h = $(document).height();
			$('#tunnel').css({height: h});
	function resizeFrame()
	{
		var w = $(window).width();
		
		
		/*_BROWSERBREITE_*/
		
		 if(w < 1235){
			$("body").removeClass("big");
			$("body").addClass("small");
		} else 
			{
			$("body").removeClass("small");
			$("body").addClass("big");
		}
		jQuery(window).resize(function() {	
			var h = $(document).height();
			$('#tunnel').css({height: h});
		});
	
		

		
	}
	/*_DOM END_*/
});
