// edit by VnDevil 1/7/2011
hs.graphicsDir = '/Scripts/highslide/graphics/';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;
hs.creditsText = 'Copyright TopWeb';
hs.creditsHref = 'http://www.topweb.vn';
//hs.dimmingOpacity = 0.75;

// Add the controlbar
hs.addSlideshow({
    interval: 5000,
    repeat: false,
    useControls: true,
    fixedControls: 'fit',
    overlayOptions: {
        opacity: 0.75,
        position: 'bottom center',
        hideOnMouseOut: true
    }
});


// using for newsdetail
$(document).ready(function () {
    $('#news-detail .content img').each(function (index) {
        //alert(index + ': ' + $(this).attr('src'));
        var curImg = $(this).attr('src');
        var curHtml = String.format("<img src='{0}' alt='' />", curImg);
        //alert(curHtml);
        $(this).replaceWith(String.format("<a href='{0}' title='' class='highslide' onclick='return hs.expand(this);'>{1}</a>", curImg, curHtml));
    });
});
