 var $j = jQuery.noConflict();

 var fixBgGlassesHeight=function() {
	// fix height, if body is larger then lay_bg_img
	if($j('div#lay_bg_img').height()<$j('body').height())
		$j('div#lay_bg_img').height(
			$j('body').height()+
			parseInt($j('body').css('margin-top'))+
			parseInt($j('body').css('margin-bottom'))+
			'px'
		);
 }

$j(document).ready(function() {
	fixBgGlassesHeight();
	
	setTimeout(function() { 
		if($j('.carouselBtn').length)
			$j('.carouselBtn')
			.text('Bilder')
			.attr('title','Bilder')
			;
	},1000);
});
