$(document).ready(function () {

	// transition effect
	style = 'easeOutQuart';

	// if the mouse hover the image
	$('.push').hover(
		function() {
			//display heading and caption
			$(this).children('div:last').stop(false,true).animate({bottom:0},{duration:200, easing: style});
		},

		function() {
			//hide heading and caption
			$(this).children('div:last').stop(false,true).animate({bottom:-30},{duration:200, easing: style});
		}
	);
	
	$('#faq').find('dd').hide().end().find('dt').click(function() {
    	$(this).next().slideToggle("normal");
   	});

});
