
// IE6 Rollovers
$(document).ready(function(){
	$('#menu LI').hover(
		function(){$(this).addClass(" over");},
		function(){$(this).removeClass(" over");}
	);
	$('#menu LI UL LI').hover(
		function(){$(this).addClass(" over");},
		function(){$(this).removeClass(" over");}
	);
	$('#search_submit').hover(
		function(){$(this).addClass(" over");},
		function(){$(this).removeClass(" over");}
	);
	$('#poll_vote').hover(
		function(){$(this).addClass(" over");},
		function(){$(this).removeClass(" over");}
	);
});
// slideshow
$(function() {
	$('#slideshow').append(' \
		<a href="#" id="prev">Previous</a> \
		<a href="#" id="next">Next</a> \
	');
	$('#slides').cycle({ 
		fx: 'scrollHorz', 
		timeout:  6000, 
		speed:    1000, 
		prev:    '#prev', 
		next:    '#next'
	});
});
