jQuery(document).ready(function(){  		    	
        jQuery('.slide_show img:first').addClass('current');        
        jQuery('.slide_show img:not(.current)').css({opacity: 0});
        setInterval('homeShow()', 6000);
});

function homeShow() {
    	var lastimgchk = jQuery('.slide_show img:last').attr('class');
    	if (lastimgchk == 'current') {
			jQuery('.slide_show img:first').addClass('active').animate({opacity: 1.0}, 1600, function() {
	        	jQuery('.slide_show img:last').removeClass('current');
	            jQuery('.slide_show img:last').css({opacity: 0});
	            jQuery('.slide_show img:first').addClass('current');
	            jQuery('.slide_show img:first').removeClass('active');
        	});
    	} else {
	    	var current = jQuery('.slide_show img.current');
	    	var active = jQuery('.slide_show img.current + img');
	    	active.addClass('active').animate({opacity: 1.0}, 1600, function() {
	            current.removeClass('current');
	            current.css({opacity: 0});
	            active.addClass('current');
	            active.removeClass('active');
	        });
	    }
}