var $links = $('#links');

$links.before()
  		   .children('div')
		   .addClass('all')
		   .filter('div:odd')
		   .addClass('odd');

$('#coolnav a').click(function() {
	var $this = $(this),
		type = $this.attr('class');

	$links.children('div')
		.removeClass('odd')
		.hide()
		.filter('.' + type)
		.show()
		.filter(':odd')
		.addClass('odd');
				
	return false;
});

jQuery(document).ready(function($) {
 
	$(".scroll").click(function(event){		
		event.preventDefault();
		$('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
	});
});
