// JavaScript Document
$(document).ready( function($) {		
	simpleSlide({
    'set_speed': 1000,
    'status_width': 20,
    'status_color_outside': '#aaa',
    'status_color_inside': '#fff',
    'fullscreen': 'false',
    'swipe': 'true'//,
    // 'callback': function() {
        /* function code */
    // }
    });
		
	$('.simpleSlide-window').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();
			}
		}
	);
	
	$('.auto-slider').each( function() {							 
		var related_group = $(this).attr('rel');
		clearInterval($.autoslide);
		$.autoslide = setInterval("simpleSlideAction('.right-button', " + related_group + ");", 6000);
	});	
});
