$(document).ready(function(){
	if (!jQuery.support.opacity) {
		$("#menu li:not(#selected) a").stop().animate({filter: 'alpha(opacity=60)'},{duration: 150});
	}
});

$(document).ready(function(){

	
	if (jQuery.support.opacity) {
    	$("#menu li:not(#selected) a").mouseover(function(){
			$(this).stop().animate({opacity:1});
		});
		$("#menu li:not(#selected) a").mouseout(function(){
			$(this).stop().animate({opacity:0.6});
		});
    } else {
		
		$("#menu li:not(#selected) a").mouseover(function(){
			$(this).stop().animate({filter: 'alpha(opacity=100)'},{duration:100});
		});
		$("#menu li:not(#selected) a").mouseout(function(){
			$(this).stop().animate({filter: 'alpha(opacity=60)'},{duration: 100});
		});
    }
	
	if (jQuery.support.opacity) {
    	$(".button").mouseover(function(){
			$(this).stop().animate({opacity:0.75});
		});
		$(".button").mouseout(function(){
			$(this).stop().animate({opacity:1});
		});
    } else {
		$(".button").mouseover(function(){
			$(this).stop().animate({filter: 'alpha(opacity=75)'},{duration:150});
		});
		$(".button").mouseout(function(){
			$(this).stop().animate({filter: 'alpha(opacity=100)'},{duration: 150});
		});
    }

	
	$('#viewport').jCarouselLite({
        auto: 2200,
        visible:1,
        speed: 800
    });
});

