// Newsletter lightbox
$( function()
{
    var $subscribe        = $( '#subscribe' ),
        $subscribeFooter  = $( '#subscribe-footer' );
    
    if( !$.fn.fancybox || ( !$subscribe.length && !$subscribeFooter.length ) )
    {
        return;
    }
    
    function scrollToTop()
    {
        if( $.browser.msie )
        {
            return;
        }
        
        window.location.hash = '#top';
        window.location.hash = '#/';
    }
    
    if( $subscribe.length )
    {
        $subscribe.fancybox( {
            hideOnContentClick  : false,
            width               : ( ( $.browser.msie ) ? 510 : 480 ),
            height              : ( ( $.browser.msie ) ? 480 : 450 ),
            autoScale           : false,
            transitionIn        : 'fade',
            transitionOut       : 'none',
            type                : 'iframe',
            centerOnScroll      : true,
            titleShow           : false
        } ).click( scrollToTop );
    }
    
    if( $subscribeFooter.length )
    {
        $subscribeFooter.fancybox( {
            hideOnContentClick  : false,
            width               : ( ( $.browser.msie ) ? 510 : 480 ),
            height              : ( ( $.browser.msie ) ? 480 : 450 ),
            autoScale           : false,
            transitionIn        : 'fade',
            transitionOut       : 'none',
            type                : 'iframe',
            centerOnScroll      : true,
            titleShow           : false
        } ).click( scrollToTop );
    }
    
} );
