$(document).ready(function(){
	var hoverConfig = {
		over: makeTall,
		timeout: 250,
		out: makeShort
	};
	$(".main-nav-item").hoverIntent(hoverConfig);
	$('.list-table tbody tr:nth-child(2n)').addClass('odd-row');
	
	var currentItem='#'+document.title;
	currentItem=currentItem.split(' ').join('-');
	
	if($(currentItem).length==0) {
		currentItem=document.title.split("::");
		currentItem='#'+$.trim(currentItem[0]);currentItem=currentItem.split(' ').join('-');
	}
	currentItem = "#sub-menu " + currentItem;
	$(currentItem).addClass("left-nav-selected");
});

function makeTall(){ 
	//$(this).animate({"height":75},200);
	var offset = $(this).position();
	var menu = $(this).children(".dropdown-menu");
	offset.bottom = offset.bottom - 10;
	
	//menu.offset({top:offset.bottom, left:offset.left});
		
	menu.slideToggle("fast");
	}
function makeShort(){
	//$(this).animate({"height":50},200);
	$(this).children(".dropdown-menu").slideToggle("fast");
	}
