function play_imgAnimation() {
/*
$(document).ready(function() {					
  $('#img1').animate({
    "height": "toggle"
  }, 100, function() {
	  document.getElementById('img1').style.visibility = "visible";
	$('#img1').animate({
    "height": "toggle"
  	}, 500, function() {	
  $('#img2').animate({
    "height": "toggle"
  }, 100, function() {
	  document.getElementById('img2').style.visibility = "visible";
	$('#img2').animate({
    "height": "toggle"
  	}, 500, function() {
  $('#img3').animate({
    "height": "toggle"
  }, 100, function() {
	  document.getElementById('img3').style.visibility = "visible";	
	$('#img3').animate({
    "height": "toggle"
  	}, 500, function() {
  $('#img4').animate({
    "height": "toggle"
  }, 100, function() {
	  document.getElementById('img4').style.visibility = "visible";	
	$('#img4').animate({
    "height": "toggle"
  	}, 500, function() {	
  $('#img5').animate({
    "height": "toggle"
  }, 100, function() {
	  document.getElementById('img5').style.visibility = "visible";
	$('#img5').animate({
    "height": "toggle"
  	}, 500, function() {  
  $('#img6').animate({
    "height": "toggle"
  }, 100, function() {
	  document.getElementById('img6').style.visibility = "visible";	
	$('#img6').animate({
    "height": "toggle"
  	}, 500, function() {
		
*/
		

		$('#img1').fadeIn(2000);
		$('#img2').fadeIn(2000);
		$('#img3').fadeIn(2000);
		$('#img4').fadeIn(2000);
		$('#img5').fadeIn(2000);
		
		$('#img6').fadeIn(2000, function() {
        // Animation complete
		var times = 5;
		var options = { opacity: 0.15 };
		$('#img1').reflect(options); 
		$('#img2').reflect(options); 
		$('#img3').reflect(options); 
		$('#img4').reflect(options); 
		$('#img5').reflect(options); 
		$('#img6').reflect(options);
		$(document).everyTime(200, function(i) {
				options = { opacity: (0.25 + i/10)};
				$('#img1').reflect(options); 
				$('#img2').reflect(options); 
				$('#img3').reflect(options); 
				$('#img4').reflect(options); 
				$('#img5').reflect(options); 
				$('#img6').reflect(options);
		}, times);
		});
		
}
