// JavaScript Document
	$(function() {
		// set opacity to nill on page load
		$("#nav ul li a").css("opacity","1");
		// on mouse over
		$("#nav ul li a").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		});
	});

		$(document).ready(function(){	
		$("#slider").easySlider({
		auto: true,
		continuous: true,
		prevText: ' ',
		nextText: ' '
	});
});
		$(document).ready(function() {
    var max = 0;
    $("label").each(function(){
        if ($(this).width() > max)
            max = $(this).width();   
    });
    $("label").width(max);
});
