$(document).ready(function(){
				   $('div').mouseover(function(){
											   
									 if(this.id=='R2' || this.id=='R4'){
										  document.getElementById("IR11").style.display='none';
										  document.getElementById("IR33").style.display='none';
										  $('#R1').animate({top: '545px'},500);
										  $('#R2').animate({top: '580px'},500);
										  $('#R3').animate({top: '615px'},500);
										  $('#R4').animate({top: '650px'},500);
										  $('#R5').animate({top: '700px'},500);
										  }
									 
									if(this.id=='R1'){
										document.getElementById("IR33").style.display='none';
										  document.getElementById("IR11").style.display='block';
										  $('#R2').animate({top: '685px'},500);
										  $('#R3').animate({top: '720px'},500);
										  $('#R4').animate({top: '755px'},500);
										  $('#R5').animate({top: '805px'},500);
										  }
									
									
									
										  
								 if(this.id=='R3'){
										  document.getElementById("IR11").style.display='none';
										  document.getElementById("IR33").style.display='block';
										  $('#R1').animate({top: '545px'},500);
										  $('#R2').animate({top: '580px'},500);
										  $('#R3').animate({top: '615px'},500);
										  $('#R4').animate({top: '805px'},500);
										  $('#R5').animate({top: '855px'},500);
										  }
									 
									
									 
									 
									  });
				   });

$(document).ready(function(){
				   $('div').mouseout(function(){
											   if(this.id=='R1' || this.id=='R3'){
												   document.getElementById("IR11").style.display='none';
										  document.getElementById("IR33").style.display='none';
										  $('#R1').animate({top: '545px'},500);
										  $('#R2').animate({top: '580px'},500);
										  $('#R3').animate({top: '615px'},500);
										  $('#R4').animate({top: '650px'},500);
										  $('#R5').animate({top: '700px'},500);
												   }
							  if(this.id!='R1' || this.id!='R3'){
								  
							  }
							  });
				   });
