/*
Botaniskasvanner.se
*/

jQuery(document).ready(function() {
	if( jQuery( 'body.home #content > img' ).length > 0 ) {
		jQuery( '#content > img:first-child' ).show();
		
		if( jQuery( '#content > img' ).size() > 1 ) {
			var interval = self.setInterval( 'SlideBackground( 1000 )', 5000 );
		}
		
	}
});

function SlideBackground( fxspeed ){
	
	jQuery( '#content > img.active' ).fadeOut( fxspeed );
	
	if( jQuery( '#content > img.active' ).next( 'img' ).length > 0 ) {
		jQuery( '#content > img.active' ).removeClass( 'active' ).next( 'img' ).addClass( 'active' );
	} else {
		jQuery( '#content > img.active' ).removeClass( 'active' );
		jQuery( '#content > img:first-child' ).addClass( 'active' );
	}
	
	jQuery( '#content > img.active' ).fadeIn( fxspeed );	
}
