// Register lightbox
$( function()
{
    var $registration        = $( '#registration' );
    
    if( !$.fn.fancybox || ( !$registration.length ) )
    {
        return;
    }
    
    if( $registration.length )
    {
        $registration.fancybox( {
            hideOnContentClick  : false,
            width               : ( ( $.browser.msie ) ? 660 : 660 ),
            height              : ( ( $.browser.msie ) ? 420 : 420 ),
            autoScale           : true,
            transitionIn        : 'fade',
            transitionOut       : 'none',
            type                : 'iframe',
            centerOnScroll      : true,
            titleShow           : false,
            autoDimensions      : true,
            scrolling           : "no"
        } );
    }
    
} );
