$(document).ready (function (){
	
	$("#menu ul li").hover(function(){
		
		$(this).children('a').addClass('active');
		$(this).children('ul').stop(true,true).slideDown();
		
	},function(){
		
		$(this).children('a').removeClass('active');
		$(this).children('ul').slideUp();
		
		})
	
});

$(document).ready(function() {
  var i = 0;
  function pulsate() {
    if(i >= 3) return;
    $(".pulsate").
      animate({opacity: 0.2}, 800, 'linear').
      animate({opacity: 1}, 1000, 'linear', pulsate);
    i++;
  }
  pulsate();
});

$(document).ready(function(){	
	$(".imagetile").mouseenter(function(){
		$(this).find("div").clearQueue().animate({top: -1},200);
	});
	$(".imagetile").mouseleave(function(){
		$(this).find("div").clearQueue().animate({top: 210},200);
	});	
});

