$(document).ready(function(){ 
	$(".project .right span").stop().animate({"opacity": "0.0"}, "slow");
	$(".project .right").hover(
	function() {
	$(this).find(".sml").stop().animate({"opacity": "0.8"}, "slow")
	$(this).find("span").stop().animate({"opacity": "0.9", top:'+=135px'}, "slow");
	},
	function() {
	$(this).find(".sml").stop().animate({"opacity": "0.9"}, "slow")
	$(this).find("span").stop().animate({"opacity": "0.0", top:'9px'}, "slow");
	});
	$("#boxes .box").hover(
	function() {
	$(this).find("img").stop().animate({"opacity": "0.5"}, "slow")
	},
	function() {
	$(this).find("img").stop().animate({"opacity": "0.9"}, "slow")
	});
	$('#coin-slider').coinslider({ width: 920, height: 368, navigation: false, delay: 6000, links : true, hoverPause: false, });
});
