﻿// JScript File

function DoOpenInfoWnd(url, wndname, width, height){
	if(width == null) width = 400;
	if(height == null) height = 400;
	if(wndname == null) wndname = "infobox";
	var options = "width=" + width + ", height=" + height + ",status=0,toolbar=0,resizable=1,menubar=0,scrollbars=1";
	window.open(url, wndname, options);
}

function DoOpenWnd(url, wndname, width, height, scrollbars){
	if(width == null) width = 400;
	if(height == null) height = 400;
	if(wndname == null) wndname = "Dialog";
	if(scrollbars == null || scrollbars)
		scrollbars = "1";
	else
		scrollbars = "0";
		
	var options = "width=" + width + ", height=" + height + ",status=0,toolbar=0,resizable=1,menubar=0,scrollbars=" + scrollbars;
	window.open(url, wndname, options);
}


$(document).ready(function () {
    $("#banner300x250").rotate();
    //create scroller for each element with "horizontal_scroller" class...
    $('.horizontal_scroller').SetScroller({ velocity: 80,
        direction: 'horizontal',
        startfrom: 'right',
        loop: 'infinite',
        movetype: 'linear',
        onmouseover: 'pause',
        onmouseout: 'play',
        onstartup: 'play',
        cursor: 'pointer'
    });

});


