// JavaScript Document

$(document).ready(function() {
			$(function(){
			$('#image') 
			
			.cycle({ 
    		fx:     'fade', 
    		speed:  '500', 
    		timeout: 12000, 
    		pager:  '.dot' 
			});
			}); 
        
			$(function() {
			$(".image").click(function() {
			var image = $(this).attr("rel");
			$('#image').hide();
			$('#image').fadeIn('slow');
			$('#image').html('<img src="' + image + '"/>');
			return false;
			});
			});
});
