$(document).ready(function(){
	
	$('#websites,#htmlcss,#seo,#posters').hide();
	jQuery.easing.def = 'easeInOutQuad';
	
	$('h2 ins').toggle(
		function() {
			$(this).attr('class','active');
			$(this).parents('h2').nextAll('ul').eq(0).slideDown(500);
		},
		function() {
			$(this).attr('class','');
			$(this).parents('h2').nextAll('ul').eq(0).slideUp(500);
	});
	
});