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

//closing out the document ready function
});
