// JavaScript Document

$(document).ready(function() {
		
$("ul#topnav li").hover(function() { //Hover over event on list item
	$(this).css({ 'background' : '#223e92 url(images/menu_.png) repeat-x'}); //Add background color + image on hovered list item
	$(this).find("span").show(); //Show the subnav
} , function() { //on hover out...
	$(this).css({ 'background' : 'none'}); //Ditch the background
	$(this).find("span").hide(); //Hide the subnav
});
	
});

$(document).ready(function() {
	$('#slideshow').cycle({
		fx:      'scrollHorz',
		timeout:  10000,
		prev:    '#prev',
		next:    '#next',
		pager:   '#nav',
		pause:	true,
		pagerAnchorBuilder: pagerFactory
	});
});

function pagerFactory(idx, slide) {
	var s = idx > 2 ? ' style="display:none"' : '';
	return '<li'+s+'><a href="#">'+(idx+1)+'</a></li>';
};
