﻿$(window).bind('load', function() {


    /* Images */

    if ($('#img img').length) {

        $('#img').simpleCycle();

        var images = $('#img img');

        /* Thumbnails */

        var ts = "";

        for (i = 0; i <= 3; i++) {
            ts = ts + "<div id=\"thumb" + (i + 1) + "\"><img src=\"" + images.eq(i).attr('src') + "\" /></div>\n";
        }

        $('#images').append("<div id=\"thumbs\">" + ts + "</div>");


    }
});

$(document).ready(function(){

/* Telephone/Quote sheen */
var sheen = $('#sheen');
var sheen_dur = 1000;

gosheen = setInterval(function() {
    sheen
		.animate({ left: 460 }, { duration: sheen_dur, easing: "linear", complete: function() {
		    $(this).css({ left: -101 });
		} 
		});
}, 5000);

});//end of doc ready
