$(document).ready(function(){
	jQuery("#header").header();
	jQuery("#footer").footer();
	jQuery('body').fixProUrls();
	
	// show fancy dividers with extra menu options if logged in
	jQuery('.btn_subscribe, .btn_admin, .btn_profile').each(function(){
		if(jQuery(this).is(":visible")){
			jQuery(this).append('<span class="button-divider">|</span>');
		}
	});

});

