$(document).ready(function() {

						   
	original = $('a').css('color');
	$('a').hover(function() { //mouseover
		var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',256,' + (Math.floor(Math.random() * 256)) + ')';
		$(this).animate({
			'color': col,
		},500);
	},function() { //mouseout
		$(this).animate({
			'color': 'black',
		},1000);
	});
	
	$(".img").fadeTo("slow", 0.7);
$(".img").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.7);
});

	
});
