jQuery(function($){

	$("img.start").hover(
		function() {
			$(this).stop().animate({"opacity": "0"}, "slow");
			},
		function() {
			$(this).stop().animate({"opacity": "1"}, "slow");
			});
	
	var delay = 2000;

	$('.boxinner img.fade').hover(
		function () {
			$(this).stop().fadeTo(delay/10,0.7);
		},
		function () {
			$(this).stop().fadeTo(delay/10,1);
		});
	
});
