$(document).ready(function(){
	
	$('p.app-store').css({ backgroundPosition: "0 0" }).mouseover(function(){
			$(this).stop().animate({ backgroundPosition: "(0 -260px)" }, { duration: 300 });
		}).mouseout(function(){
			$(this).stop().animate({ backgroundPosition: "(0 0)"}, { duration: 300 });
		});
	
	$('ul.features li.top-row').equalize('height');
	
	$('#screens').cycle({timeout:5000,pause:1}).after('<div class="highlight"></div>');
	
	// $('.app-store a').click(function(){
	// 	alert('Birdbrain has been submitted to the App Store and is awaiting approval. To be notified when it becomes available, follow @birdbrainapp on Twitter.');
	// });

});