$(function(){
	$.prettyLoader();
	
	//background image rotate
    setInterval (rotateImage, 10000);
        
    //background image rotate
    var images = new Array ('css/images/sfeer_01.jpg','css/images/sfeer_04.jpg','css/images/sfeer_02.jpg','css/images/sfeer_03.jpg','css/images/sfeer_05.jpg');
    var index = 1;
 
    function rotateImage(){
        $('#loader').load(images[index],function(){
                $('#bg2').attr('src',images[index]);
            
                $('#bg1').fadeOut(2000,function(){
                        $('#bg1').attr('src',images[index]);
                        $('#bg1').fadeIn();
                        if (index == images.length-1){
                            index = 0;
                        }else{
                            index++;
                        }
                });
        });
    }
});



