//$.fn.horizontalAccordion = function() {
//	return this.each(function() {
//		var $accordionBox = $(this).find('.title');
//		var $open = $accordionBox.next().filter(':first');
//		$open.css({display:'block', width:width});
//		var width = $open.outerWidth();
//		$accordionBox.next().filter(':not(:first)').css({display:'none', width:0});
//		$accordionBox.click(function() {
//			$open.animate({width: 0}, {duration:400});
//			if ($open.prev().get(0) == this) {
//				return;
//			}
//			$('#rightCol').find('.content').css({display:'none', width:0});			
//			$open = $(this).next().animate({width:width}, {duration:400});
//		});
//	});
//};
//
//$(document).ready(function() {
//	$('#rightCol').horizontalAccordion();
//});

$(document).ready(function(){

    lastBlock = $("#c3 .mpContentItem");
    maxWidth = 275;
    minWidth = 46;
    	

    $("#rightCol .csc-default .mpContentItem").hover(
      function(){
        $(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
        $(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
        lastBlock = this;
      }
    );
});
