﻿$(document).ready(function()
{
        $('#divPageHeaderLeft :first-child').animate({top: "-250px"}, 5000).animate({top: "0px"}, 5000)
        setInterval(function()
        {
            $('#divPageHeaderLeft :first-child').fadeOut(3000)
            .next('img').fadeIn(3000).animate({top: "-250px"}, 5000).animate({top: "0px"}, 5000)
            .end().appendTo('#divPageHeaderLeft');
        }, 16000);
        
        $('#divPageHeaderRight').corner("tl 20px br");
        $('#divRecentTestimonials').corner("tl 20px br");
        $('#divWebsiteDesignTips').corner("tl 20px br");
});
