jQuery(document).ready(function($) {
	// home page slideshows
	$('#slides').slides({
		preload: false,
		effect: 'fade',
		crossfade: true,
		slideSpeed: 400,
		fadeSpeed: 500,
		play: 5000,
		pause: 2500,
		hoverPause: true,
		randomize: false,
		generatePagination: false
	});
	// dropdown menu show/hide
	$("#menu-mainnav > li").hover(function() {
		if ($(this).find("ul").length > 0) {
			$(this).find("a:first").addClass("submenu_hover");
			$(this).find("ul").css("display","block");
		}
	},function() {
		if ($(this).find("ul").length > 0) {
			$(this).find("a:first").removeClass("submenu_hover");
			$(this).find("ul").css("display","none");
		}
	});
}); 
