$(document).ready(function(){
		$('#header').slideshow({
			timeout: 5000
		});

		$("#products li").mouseover(function(){
			$(this).css('listStyleType','square')
		});

		$("#products li").mouseout(function(){
			$(this).css('listStyleType','none')
		});
});