// JavaScript Document

function fbs_click() {u='http://www.abbottmama.com.hk/?r=share';t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}

$(document).ready(function() {
	$("a.send2friend").fancybox({
		'transitionIn'	:	'none',
		'transitionOut'	:	'none',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'type'			: 	"iframe",
		'width'			:	601,
		'height'			:	413,
		'dropshadow' : false,
		'overlayOpacity' : 0.3,
		'overlayColor': '#666',
		'overlayShow': true 
	});	
	
	$("a.ext").click(function() { 
		var a = $(this).attr("href");
		$("#dialog-confirm").dialog({
			draggable: false,
			title: '注意',
			resizable: false,
			height:340,
			width: 460,
			modal: true,
			buttons: { '是': function() {
					window.location = a;					
				},
				'否': function() {
					$( this ).dialog( "close" );
				}
			}
		});	
		return false;
	});
});
