$(document).ready(function(){
var margin=$("#image1").width()/2;
var width=$("#image1").width();
var height=$("#image1").height();

$("#image2").stop().css({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'});
//$("#reflection2").stop().css({width:'0px',height:"+height+'px',marginLeft:"+margin+'px'});

var i=1;

$.fn.flipImages=function(){
	
if(i==1){
		$("#image1").stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'},{duration:500});
	window.setTimeout(function() {
		$("#image2").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px',opacity:'1'},{duration:500});
	},500);
	i=2;
}else{
		$("#image2").stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'},{duration:500});
	window.setTimeout(function() {
		$("#image1").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px',opacity:'1'},{duration:500});
	},500);
	i=1;
}

};
	setInterval('$("#banner1").flipImages()', 7000);//change the time interval acc. to your needs
});

/*-----------------------------------------------------2------------------------------------------------------------------------------*/

$(document).ready(function(){
var margin=$("#image3").width()/2;
var width=$("#image3").width();
var height=$("#image3").height();

$("#image4").stop().css({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'});
//$("#reflection2").stop().css({width:'0px',height:"+height+'px',marginLeft:"+margin+'px'});

var i=1;

$.fn.flipImages2=function(){
	
if(i==1){
		$("#image3").stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'},{duration:500});
	window.setTimeout(function() {
		$("#image4").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px',opacity:'1'},{duration:500});
	},500);
	i=2;
}else{
		$("#image4").stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'},{duration:500});
	window.setTimeout(function() {
		$("#image3").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px',opacity:'1'},{duration:500});
	},500);
	i=1;
}

};
	setInterval('$("#banner2").flipImages2()', 10000);//change the time interval acc. to your needs
});


/*-----------------------------------------------------3------------------------------------------------------------------------------*/

$(document).ready(function(){
var margin=$("#image5").width()/2;
var width=$("#image5").width();
var height=$("#image5").height();

$("#image6").stop().css({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'});
//$("#reflection2").stop().css({width:'0px',height:"+height+'px',marginLeft:"+margin+'px'});

var i=1;

$.fn.flipImages3=function(){
	
if(i==1){
		$("#image5").stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'},{duration:500});
	window.setTimeout(function() {
		$("#image6").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px',opacity:'1'},{duration:500});
	},500);
	i=2;
}else{
		$("#image6").stop().animate({width:'0px',height:''+height+'px',marginLeft:''+margin+'px',opacity:'0.5'},{duration:500});
	window.setTimeout(function() {
		$("#image5").stop().animate({width:''+width+'px',height:''+height+'px',marginLeft:'0px',opacity:'1'},{duration:500});
	},500);
	i=1;
}

};
	setInterval('$("#banner3").flipImages3()', 5000);//change the time interval acc. to your needs
});



