$(document).ready(function() 
{	
	$('#nav a').hover(function()
	{
		//$(this).stop().animate({ }, 150);
	},
	function()
	{
		//$(this).stop().animate({ }, 150);
	});
	
	$('#jump-to').change(function()
	{
		$.scrollTo('#' + $(this).val(), 1200, { easing:'easeOutQuad' });
		this.selectedIndex = 0;
	});
	
	$('a.anchor').click(function(event)
	{
		$.scrollTo($(this).attr('href'), 1200, { easing:'easeOutQuad' });
		event.prefentDefault();
		return false;
	});
	
	$('p.top a').click(function()
	{
		$.scrollTo('#top', 1200, { easing:'easeOutQuad' });
	});
	
	$("a.thumb").fancybox({
		'overlayOpacity'		: 0.75,
		'overlayColor'			: '#FFFFFF', 
		'hideOnContentClick'	: false, 
		'type'					: 'inline',
		'padding'				: 0
	});
		
});
