$(document).ready(function() {
// MENU FADING EFFECT
// find the div.fade elements and hook the hover event
//  $('li.fade').hover(function() {
//    // on hovering over, find the element we want to fade *up*
//    var fade = $('> div', this);
//    
//    // if the element is currently being animated (to a fadeOut)...
//    if (fade.is(':animated')) {
//      // ...take it's current opacity back up to 1
//      fade.stop().fadeTo(250, 1);
//    } else {
//      // fade in quickly
//      fade.fadeIn(250);
//    }
//  }, function () {
//   // on hovering out, fade the element out
//    var fade = $('> div', this);
//    if (fade.is(':animated')) {
//      fade.stop().fadeTo(3000, 0);
//    } else {
//      // fade away slowly
//      fade.fadeOut(250);
//    }
//  });
$.featureList(
				$("#tabs li a"),
				$("#output li"), {
					start_item	:	0
				}
			);
//PNG Fix
	$(document).pngFix();
//Cycle the Index Image
	$('#cycle-main-pic').cycle({ 
    fx:    'fade', 
    speed:  2500,
	timeout:  10000
 });
//
//Cycle the Page Image
//	$('#cycle-main-pic1').cycle({ 
//    fx:    'fade', 
//    speed:  2500,
//	timeout:  10000
// });
//Lockerbie Sliding Content
//$("#slider").easySlider({
//		auto: false, 
//		continuous: true,
//		numeric: true
//	});
});