/*********************************************************
 * NaaN Grafix - We rock the web                         *
 * Projekt: Juss.at                                      *
 *********************************************************/
 
jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

 
jQuery(function( $ ){
	var sidebarHeight = $('div#sidebar').height();
	var contentHeight = $('div#content').height();	
	if( (contentHeight-191) < sidebarHeight ) {
		$('div#containerContent').height(sidebarHeight+191+'px');
	}
	else { $('div#sidebar').height(contentHeight-191+'px'); }
	
	$('div#footerToTop a').click(function(){
		$.scrollTo( 0, 300 );
	});
	
	//$('div.pageBrowserPageLinkInner span.pageBrowserLinkCont:last span').css('background-image', 'none');
});

