$(document).ready(function() { 
	
	$.fn.extend({
      		showAndScroll: function() {
         		if( $(this).position()['top'] )
            			window.scrollTo(0, (($(this).position()['top'])-20));
         	}
   	});
	$('#faq-body ol li a').click(function() {
		var browser=navigator.appName;
		if(browser=="Microsoft Internet Explorer") {
			$(this).next().toggle(400, function(){$(this).showAndScroll()});
		}
		else {
                	$(this).parent().next().toggle(400, function(){$(this).showAndScroll()});
		}
        });

	$('#scrollingdata div').click(function() {
                $(this).children().next().toggle(400, function(){$(this).showAndScroll()});
        });	
        


	$('#homepage').click(function() {
                $(this).children().next().toggle(400, function(){$(this).showAndScroll()});
        });

		
});