$(document).ready(function(){
	$(".homepage-rotator").cycle({
		timeout:  5000,
		speed:  2000
	});
	// Dropdown menu behaviors for IE
	$("#main-nav ul li").hover(function(){
		$(this).addClass("iehover");
	},function(){
		$(this).removeClass("iehover");
	});
});