// JavaScript Document

// SHADOWBOX
Shadowbox.init({
    players:    ["iframe"]
});


// Accordian Menu
$(function() {
	$('#accordion > li.subNav').hover(
		function () {
			var $this = $(this);
			$this.stop().animate({'width':'140px'},500);
			$('.description',$this).stop(true,true).fadeIn();
		},
		function () {
			var $this = $(this);
			$this.stop().animate({'width':'44px'},1000);
			$('.description',$this).stop(true,true).fadeOut(500);
		}
	);
});
