/* Author: 

*/

$(document).ready(function() {
		function tornasu() {
			$( "img.kit" ).show();
			runEffect();
		}
    
		function runEffect() {
			var options = {};
			$( "img.kit" ).toggle( 'pulsate', options, 6000, tornasu );
		};
		
		
		
		
		runEffect();
		
		//$("img.kit").animate({"right":"0px"}, "slow");
		
  });






















