$(document).ready(function() {


		// slideshow notice
	   $('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...,
		// easing: 'easeInOutQuad'
		speedIn:  500, 
		speedOut: 500, 
		easeIn:  'easeInQuad', 
		easeOut: 'easeOutQuad', 
		sync:     0, 
		delay:   -4000
	});

	// copyright notice
	$(function() {
		$('#navigation a').stop().animate({'marginLeft':'-215px'},1000);

		$('#navigation > li').hover(
			function () {
				$('a',$(this)).stop().animate({'marginLeft':'-2px'},200);
			},
			function () {
				$('a',$(this)).stop().animate({'marginLeft':'-215px'},200);
			}
		);
	});




});