// JavaScript Document

$(document).ready(function () {
							
							
	$(".screenshots img").addClass("hfade");
	
	$("#buttons img").addClass("hfade");

	
  
    $(".hfade").hover(function(){
	$(this).stop().fadeTo("fast", 0.6);
	},function(){
	$(this).stop().fadeTo("slow", 1.0);

	
		}); 
           
 	  
    });
