$j(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();
			}
		}
	);
	$('#contents_left').ready( function() {
		simpleSlide({
			'set_speed': 400,
			'status_width': 20,
			'status_color_outside': '#333',
			'status_color_inside': '#c6ff00',
			'callback': function() {
				$('.auto-slider').each( function() {
					var related_group = $(this).attr('rel');
					clearInterval($.autoslide);
					$.autoslide = setInterval("simpleSlideAction('.right-button', " + related_group + ");", 7000);
				});
			}
		});
	});

});
