jQuery(document).ready(				  
	function() {
		ContentHeight = jQuery('.innerContent').height();
		RightMenuHeight = jQuery('#menuR').height();
		RightPrHeight = jQuery('#RightPr').height();
		Padding = ContentHeight - RightMenuHeight - RightPrHeight - 30;
		if(Padding > 0)
		{
			jQuery('#RightPr').css("padding-top", Padding);
			jQuery('#RightPr').css("background-color", '#ffffff');			
		}
		 jQuery('#RightPr').show();	
	}

);
