// SHUM from TRIPLE-P Official Web Site

//fancybox

$(function() {

	$('.popUpFancy').fancybox({
		'width':801,
		'height':601,
		'padding':10,
		'transitionIn':'fade',
		'transitionOut':'fade',
		'autoScale':false,
		'type':'iframe',
		'centerOnScroll':true
	});
	
	$('.popUpFancy').hover(
		
		function(){
			$(this).stop().fadeTo(200, 0.6);
		},
		function(){
			$(this).stop().fadeTo(300,1);
		}
	
	);

});
