/*!
 * jQuery JavaScript Library v1.6.2
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2011, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Thu Jun 30 14:16:56 2011 -0400
 */
$(document).ready( function() {

							 
	$(".push").live('click',function(){
        var id=$(this).attr('id').split('-')[1];
       
		$("#answer"+id).slideToggle("slow");
		return false;
  	 });
	$(".push-in").live('click',function(){
        var id=$(this).attr('id').split('-')[2];
       
		$("#answer"+id).slideToggle("slow");
		 $('html,body').animate({scrollTop: '50px'}, 1000);
		return false;
  	 });
							 
});


