$(window).load(function() {
$('#pictures').cycle({fit: 1, pause: 1, before: onBefore, height: '400px'});
$(document).ready(function() {
    $('#pictures img:gt(0)').hide();
});
function onBefore() { 
        $(this).css({left: '50%', marginLeft: -$(this).width()/2}); 
        $(this).css({top: '50%', marginTop: -$(this).height()/2}); 
    $('#title') 
        .html(this.alt); 
};
});

$(document).ready(function() {
	
	$("a.popup").fancybox({
	'overlayShow': true,
	'showCloseButton': true,
	'hideOnOverlayClick': true,
	'hideOnContentClick': false,
	'centerOnScroll': true
	});

});

$(document).ready(function() {
	
	$("a.popupif").fancybox({
	'autoscale' : false,
	'height' : '90%',
	'width' : '90%',
	'type' : 'iframe',
	'overlayShow': true,
	'showCloseButton': true,
	'hideOnOverlayClick': true,
	'hideOnContentClick': false,
	'centerOnScroll': true
	});

});