	$(document).ready(function () {

		//Set the height of the block
		$('#rightColMenu .block').height($('#rightColMenu li').height());

		//go to the default selected item
		topval = $('#rightColMenu .selected').position()['top'];
		$('#rightColMenu .block').stop().animate({top: topval}, {easing: '', duration:500});

		$('#rightColMenu li').hover(
			
			function() {
				
				//get the top position
				topval = $(this).position()['top'];
				
				//animate the block
				//you can add easing to it
				$('#rightColMenu .block').stop().animate({top: topval}, {easing: '', duration:500});
				
				//add the hover effect to menu item
				$(this).addClass('hover');	
			},
			
			function() {		
				//remove the hover effect
				$(this).removeClass('hover');	
			}
		);
	
	});

	$(document).ready(function () {

		//Set the height of the block
		$('#middleColMenu .block').height($('#middleColMenu li').height());

		//go to the default selected item
		topval = $('#middleColMenu .selected').position()['top'];
		$('#middleColMenu .block').stop().animate({top: topval}, {easing: '', duration:500});

		$('#middleColMenu li').hover(
			
			function() {
				
				//get the top position
				topval = $(this).position()['top'];
				
				//animate the block
				//you can add easing to it
				$('#middleColMenu .block').stop().animate({top: topval}, {easing: '', duration:500});
				
				//add the hover effect to menu item
				$(this).addClass('hover');	
			},
			
			function() {		
				//remove the hover effect
				$(this).removeClass('hover');	
			}
		);
	
	});
