function openWin (href, name, options) {
	return window.open(href, name, options);
}

$(document).ready( function() {

	$('header #background-rotator').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 5000
	});
	
	$('nav li:has(ul)').hover( function() {
		$(this).children('a').addClass('hover');
		$(this).find('ul').slideDown('fast');
	}, function() {
		$(this).children('a').removeClass('hover');
		$(this).find('ul').slideUp('fast');		
	});
});

