/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


(function($) {
    $(document).ready(function() {
        
        // header images
        var box = $('#headerImages');
        
        if (box.length > 0)
        {
            box.cycle({
                timeout : 4000,
                speed : 1000,
                prev : '#left',
                next : '#right'
            });
        }
        
        // news ticker
        var newsBox = $('.scrollContainer .newsBlock');
        
        if (newsBox.length > 0)
        {
            newsBox.cycle({
                fx:      'scrollUp',
                timeout : 4000,
                speed : 1000,
                prev : '#left',
                next : '#right'
            });
        }
        
    }) // document
})(jQuery)
