	 
		 
		 $(document).ready(function(){	
		   $(".small_machines a").hover(
			function(){
				$(this).animate({ marginTop: '0px'}, 'fast');
		   }
		   ,function(){
				$(this).animate({marginTop: '20px'}, 'fast');		 
		   });
		   
		   $('.pulse_box').pulse({
				speed: 1300,
				opacityRange: [0.0,1.0]
			});
		   
		   $('.gepeinkrol_light a').mouseover(
				function(){
					var w = $(this).attr('class').split('_');
					$('.big_light').css({backgroundPosition: '0px '+((w[1]-1)*-325)+'px'});
					var text = $('.zoomtext_'+w[1]).html();
					$('.big_light_text').html(text );  
				}
			);
		   
		   
		
		   /*
		   $(".fancy").fancybox(
					{
						'padding'			: 1,
						'zoomOpacity'			: true,
						'overlayShow'			: true,
						'zoomSpeedIn'			: 500,
						'zoomSpeedOut'			: 500,
						'title' : '<a href="http://quantasystem.hu/registrations/add" style="color:#ffffff">Jelentkezéshez kattintson ide!</a>'
			}); 
		   */
		   
		   
		   
		 });
		 
		