$(document).ready(function(){
	$("div.success").hide();
	$("a.print").click(function(){
		window.print();
		return false;
	});
	$("#send_friend_btn").colorbox({width:"280", height:"260", iframe:true,scrolling:false});
	$("form#form_send_friend a#submit").click(function(){
		$.post($("form#form_send_friend").attr("action"),
			{ 
				email: $("form#form_send_friend input#email").val(),
				senders_name: $("form#form_send_friend input#senders_name").val(),
				type: $("form#form_send_friend input#type").val(),
				id: $("form#form_send_friend input#id").val()
			},
	   	function(data){
				$("form#form_send_friend").fadeOut("def", function(){
					$("div.success").fadeIn();
				});
			}
		);

		return false;
	});
});

