I have a website which contains an image bar of three images the in header section like so:

Currently, I've written the following jQuery to fadeIn & fadeOut at least the first image on a 3 second timer:
<script type="text/javascript">
$(document).ready(function (){
setTimeout(function (){
$('#Image1').fadeOut('slow');
}, 3000);
});
var fadeBack = function () {
setTimeout(function () {
$('#Image1').fadeIn('slow');
}, 6000);
};
fadeBack();
</script>
What I'm having difficulty figuring out is how I can actually make a slideshow out the rest of the images in the Images folder. Thus I built in a DB with the structure as such:

And here's the data view of the paths in the table:

Lastly, here's my Web.config file's <connectionStrings> info:
<connectionStrings>
<add name="DetailPhotosEntities" connectionString="metadata=res://*/App_Code.DetailPhotos.csdl|res://*/App_Code.DetailPhotos.ssdl|res://*/App_Code.DetailPhotos.msl;provider=System.Data.SqlClient;provider connection string="data source=.\SQLEXPRESS;initial catalog=DetailPhotos;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
Is what I'm trying to do possible? I was told I would have change my <connnectionStrings> following another site's info. How do I call the image URLs into the header image placeholders from my DB, and set the behavior up as a slideshow with fadeIn & fadeOut on the images? Would I be, in effect, fading the image paths from the DetailPhotos DB? This is my most ambitious work yet, and I'm lost. Thanks!