﻿// JScript File
// On document ready.
$(document).ready(function()
{
	$("div#slideshow").show().cycle({
	    fx: 'scrollLeft',
        speed: 1000,
        delay: -1000,
        timeout: 5000,
        cleartype: !$.support.opacity,
        height: 317,        
        pause: 1        
	});
	
	$("div#slideshow").before('<div id="pager">').cycle({
	    fx: 'scrollLeft', 
        speed:  '1000', 
        timeout: 5000, 
        pager:  '#pager' 
    });
});
