﻿    $(document).ready(function(){
      var imagesl = ['photo-1.jpg', 'photo-3.jpg', 'photo-5.jpg', 'photo-7.jpg', 'photo-9.jpg', 'photo-11.jpg', 'photo-13.jpg', 'photo-15.jpg'];
      $('<img alt="Hull Letting Agents" src="/images/' + imagesl[Math.floor(Math.random() * imagesl.length)] + '">').appendTo('#banner');
      var imagesr = ['photo-2.jpg', 'photo-4.jpg', 'photo-6.jpg', 'photo-8.jpg', 'photo-10.jpg', 'photo-12.jpg', 'photo-14.jpg', 'photo-16.jpg', 'photo-17.jpg'];
      $('<img alt="Letting Agents in Hull" src="/images/' + imagesr[Math.floor(Math.random() * imagesr.length)] + '">').appendTo('#banner');
    
if ($('#slideshow').length) {
	$('#slideshow').cycle({
		fx: 'fade',
		speed: 2000, 
		timeout: 6000
	});
}
      
        if ($("a.thumb").length) {
            $("a.thumb").click(function(){
                $("#mainImage").attr('src', $(this).attr('href'));
                return false;
            });
        }                
      
    });
