/*********************************
	code: Tritinichenko Leonid
	date: 12/03/2011
	ver.: 1.0
**********************************/

$(document).ready(function(){
	// Send to friend	
	$(".send-friend-box").hover(
		function () {
			var modalStatus = $(".send-friend-modal").css("display");
			if (modalStatus !== 'block'){
				$(".send-friend-modal").css("display", "block");
				$(".send-friend-modal").animate({"top": "-=25px", "opacity": "+=1"}, 200);
			}
		},
		function () {
			$(".send-friend-modal").animate({"top": "+=25px", "opacity": "-=1"}, 1);
			$(".send-friend-modal").css("display", "none");			
		});
		
    $(".showmailform").click(function () {
		$("div.mailform").slideToggle("slow");
    });

}); 


