//*******************************************************************
// Kappa Solutions Ltd. Javascript Library.
// (c) 2000-2009 Kappa Solutions Ltd. except where credited
// 
// Opacity and transition effects used in this class are credited to
// brainerror.net: 
//		http://brainerror.net/scripts/javascript/blendtrans/
//*******************************************************************

// Initialise page
	var slideController;
	$(document).ready(function() {

		// Main menu animations
		$("#menu li:not('.act') a").mouseover(function(){
		//		$(this).css({marginTop:"-47px"});
			$(this).stop(true, true).animate({marginTop:"-47px"}, 150);
			$(this).animate({paddingTop:"47px"}, 10);
		});
		$("#menu li:not('.act') a").mouseout(function(){
	//		$(this).css({marginTop:"0px"});
			$(this).stop(true, true).animate({marginTop:"0px"}, 150);
			$(this).animate({paddingTop:"0px"}, 10);
		});
		
		// Slideshow animations
		var opts = null;
		slideController = new KSL.Widget.SlideController("#slide-container", "", "", "slideController", opts);
		setInterval("slideController.moveNext();", 5000);

	});

