var taf;
jQuery(document).ready(function(){
	taf = $("#tipafriend").overlay({
		api:true,
		expose: '#ffffff'
	});
	$('.tipafriendbutton').click(function(){
		$('#tipafriend-content').load(
			"http://enb.dev.mocsystems.com/?type=432",
			function(){
				taf.load();
				$('#taf-form').live('submit', function(){

					$('#taf-location').val(window.location);
					$('#taf-booktitle').val(document.title);
					$.post(
						'http://enb.dev.mocsystems.com/?type=432',
						$('#taf-form').serialize(),
						function(data){
							if(data.length>0) {
								$('#tipafriend-content').html(data);
							} else {
								taf.close();
							}
						},
						'html'
					);
					return false;
				});
			}
		);
	});

	/*taf.load(); */
});
