$(document).ready(function(){
					
//for the fading buttons
$(".fademe").hover(function(){
$(this).stop().fadeTo(250, 0);
},function(){
$(this).stop().fadeTo(250, 1);
});


//for the fading buttons
$(".fademe_about").hover(function(){
$(this).stop().fadeTo(1000, 0);
},function(){
$(this).stop().fadeTo(1000, 1);
});



//closing out the document ready function
});
