// start custom jquery code
 
$(document).ready(function() {

	// menu script
	$(".menu li").hover(
		function () {
			$(this).css( "background-position", "left bottom" );
			$(this).children("span").css( "background-position", "right bottom" );
		},
		function () {
			$(this).css( "background-position", "left top" );
			$(this).children("span").css( "background-position", "right top" );
		}
	);

	// handle cycle transitions
	$('.slideshow').hide().cycle({
		fx: 'fade',
		timeout: 7000
	}).fadeIn('slow');

	  // panels script
	$(".panels a").hover(
		function () {
			$(this).css( "background-position", "right top" );
		},
		function () {
			$(this).css( "background-position", "left top" );
		}
	);

});

