
$(document).ready(function(){
						   
	$("#shaperow>a").css( {backgroundPosition: "top"});
	$("#shaperow>div.letter").css({display: "none",opacity: "1"});
	$("#shaperow>a").hover(
	function () { 
		$(this).addClass("hovering");
		if ( $(this).hasClass("hovering") ){
			$(this).css( {backgroundPosition: "bottom"});
			$(this).find(".letter").css({display: "block"});
			$(this).find(".letter").stop().animate({opacity: "0"}, {duration:3000});
	;}},
	function () {
		$(this).css( {backgroundPosition: "top"});
		$(this).find(".letter").css({display: "none"});
		$(this).find(".letter").stop().animate({opacity: "1"}, {duration:1});
		$(this).removeClass("hovering");
	});				   


	$(".shape_mscont .letter").css({display: "none",opacity: "1"});
	$(".shape_mscont").hover(
	function () { 
		$(this).addClass("hovering");
		if ( $(this).hasClass("hovering") ){
			$(this).find(".letter").css({display: "block"});
			$(this).find(".letter").stop().animate({opacity: "0"}, {duration:3000});
	;}},
	function () {
		$(this).find(".letter").css({display: "none"});
		$(this).find(".letter").stop().animate({opacity: "1"}, {duration:1});
		$(this).removeClass("hovering");
	});
	



});
	

