window.addEvent('domready', function() {

	$$('.layout_middle_group').removeProperty('style');
	$$('.layout_middle').removeProperty('style');
	$('global_content').removeProperty('style');
	$$('.layout_middle').removeProperty('style');
	//Remove the partition if layout right is not present
	if(($$('.layout_right_group').length == 0 && $$('.layout_right').length == 0) || $$('.blogspotsec1').length != 0){
		$('global_content').setStyle('background-image','none');
	}
	
	//Check the layout and if content is not header is not present then add it
	if($$('div.layout_user_profile_info').length != 0 && $$('div.layout_user_profile_info').getFirst().get('tag')[0] != 'h3'){
		new Element('h3', { 'html': 'Profile Info' }).injectBefore($$('div.layout_user_profile_info').getFirst()[0]);
	}
	
});
