$(document)
		.ready(
				function($) {
					$('.slideshow').live(
							'mouseover mouseout',
							function(event) {
								if (event.type == 'mouseover') {
									$(this).children(
											'.left-button, .right-button')
											.stop(true, true).fadeIn();
								} else {
									$(this).children(
											'.left-button, .right-button')
											.stop(true, true).fadeOut();
								}
							});
					$('#content_window').load('setting-up.php', function() {
						simpleSlide( {
							'swipe' : 'true'
						});
					});
					window.setInterval(
							"simpleSlideAction('.right-button', '');", 4000);
				});
