$(document).ready(function(){
$("#left").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
$("#right").fadeTo("slow", 0.6);

$("#left").hover(function(){
$(this).fadeTo("normal", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("normal", 0.6); // This should set the opacity back to 70% on mouseout
});

$("#right").hover(function(){
$(this).fadeTo("normal", 1.0); // This should set the opacity to 100% on hover
},function(){
$(this).fadeTo("normal", 0.7); // This should set the opacity back to 70% on mouseout
});


});

function delayedRedirect(){
    window.location = "http://sunbuggy.net/Las_Vegas/index.php"
}


