
	
	// Remove empty pane wrappers
	(function removePW(){
		if(jQuery('.SmallPane1').children().length + jQuery('.SmallPane2').children().length + jQuery('.SmallPane3').children().length == 0) jQuery('.skin-panes-small').hide();
		if(jQuery('.BottomPane1').children().length + jQuery('.BottomPane2').children().length == 0) jQuery('.skin-panes-bottom').hide();
	})();

	jQuery(document).ready(function(){
		
		// back to top
		jQuery('.back-to-top, #back-to-top').click(function(){
			jQuery('html, body').animate({scrollTop:0}, 'fast');
			return false;
		});
		
		// move the login link in the footer
		jQuery('.nav-footer li:last').removeClass('last');
		jQuery('.skin-item-login').appendTo('.nav-footer').addClass('last');
		
		// add browser class to canvas
		if(jQuery.browser.mozilla) jQuery('.skin-canvas').addClass('mozilla');
		else if(jQuery.browser.webkit) jQuery('.skin-canvas').addClass('webkit');
		else if(jQuery.browser.opera) jQuery('.skin-canvas').addClass('opera');
		else if(jQuery.browser.msie) jQuery('.skin-canvas').addClass('msie');
	});
