// JavaScript Document

$(document).ready(function() {

	$('.btn-holder').hover(function(){
		$(this).children('img.btn-icon').stop(true, true).animate({'width':'100px','height':'100px','top':'20px','left':'175px'})
		//alert("I am hovering");
	}, function() {
		$(this).children('img.btn-icon').stop(true, true).animate({'width':'66px','height':'66px','top':'45px','left':'200px'})
		//alert("I have stopped hovering");
	});
	
	
	var events = $(".quotes").children("li");
	var eventNum = events.size();
	var className = "event-";
	var countOne = 0;
	var countTwo = 0;
	
	events.hide();
	events.each(function(){
		$(this).addClass(className+countOne);
		countOne++;
	});
	
	setInterval(fadeEvents, 500);
	
	function fadeEvents() {
		$("."+className+countTwo).fadeIn("slow");
		countTwo++;
	}
	

	
	

});
