﻿function ieHoverFix(menuId, adminMode) {
}

$(document).ready(function () {

	$('ul#HouseMenuNav').supersubs({
		minWidth: 12,   // min width of sub-menus in em units 
		maxWidth: 27,   // max width of sub-menus in em units 
		extraWidth: 1.5   // extra width can ensure lines don't sometimes turn over due to slight rounding differences and font-family 
	}).superfish({
		delay: 800,                             // delay on mouseout 
		animation: { opacity: 'show', height: 'show' },  // fade-in and slide-down animation 
		speed: 'fast',                          // animation speed (slow/normal/fast)
		autoArrows: true,                            // enable generation of arrow mark-up 
		dropShadows: true                             // enable drop shadows
	});

	//put page header
	if ($('span.PageHeader').text() == '') {
		$('span.PageHeader').html('<div class="jQHeader">' + $('a.Breadcrumb').last().text() + '</div>');
	}

});

$('#banner').cycle({
    random: true,
    timeout: 3000,
    pause: true
})
