﻿jQuery(document).ready(function () {

    //setWideColumnHeight();

//    //scroller
//    jQuery('a[href=#*]').click(function () {
//        //alert('Hello world');
//        $('html, body').animate({ scrollTop: jQuery('a[name=payment]').position().top }, 'slow');
//        return false;
//    });

    //check fancybox loaded before binding
    if (jQuery.fancybox != undefined) {

        //bind fancybox to link
        jQuery("a[rel*=fancybox]").fancybox({
            'zoomSpeedIn': 300,
            'zoomSpeedOut': 300,
            'overlayShow': true,
            'hideOnContentClick': false,
            'easingIn': 'jswing',
            'easingOut': 'jswing',
            'cyclic': 'false',
            'titlePosition': 'outside'
        });

    }

});

function setWideColumnHeight() {

    if (jQuery('#dvWideCol').height() < jQuery('#dvThinCol').height()) {

        //jQuery('#dvWideCol').height(jQuery('#dvThinCol').height() - (jQuery('#dvWideCol').css('padding-top').replace('px', '') * 2) - (jQuery('#dvWideCol').css('border-top-width').replace('px', '') * 2));

    }

}
