// Setup front page slideshow
$(document).ready(function() {  
	/* Dropdown Menus */
	function addDropdown(){
		$(this).children("ul").slideDown('fast');
		$(this).addClass("hovering current");
	}

	function removeDropdown(){
		$(this).children("ul").slideUp('fast');
		$(this).removeClass("hovering current");
	}		
	
	var dropDownConfig = {
		interval: 100,
		sensitivity: 1,
		over: addDropdown,
		timeout: 400,
		out: removeDropdown
	};
	
	$("li.dropDown").hoverIntent(dropDownConfig);	
	
	$("table.list-table tbody tr:even").addClass("odd");	
}); 
