$(document)
		.ready(
				function() {
					$('#flash').css('opacity', 0);
					$('#flash').animate( {
						opacity : 1
					}, 5000);

					$('.window2 img').css('opacity', 0);
					$('.window2 img').animate( {
						opacity : 1
					}, 2000);
					$('.mini')
							.click(
									function() {
										var rel = $(this).attr('rel');
										$('.window2')
												.fadeOut(
														'slow',
														function() {
															$(this)
																	.html(
																			'<img src="Images/photo/' + rel + '" alt="" />')
																	.fadeIn(
																			'slow');
														});

										return false;
									});

					$('.mini').mouseenter(function() {
						$('img', this).animate( {
							opacity : 1
						}, 500);
					}).mouseleave(function() {
						$('img', this).animate( {
							opacity : 0.5
						}, 500);
					});
					$(function() {
						$('#oi').cycle({ 
						    fx:    'fade', 
						    speed:  2500,
						    timeout:  4000 
						 });
						$('#kon').cycle({ 
						    fx:    'fade', 
						    speed:  2500,
						    timeout:  4500 
						 });
						$('#tran').cycle({ 
						    fx:    'fade', 
						    speed:  2500,
						    timeout:  5000 
						 });
					});

				});

