$(document).ready(function()
	{

		$('.hide').hide();
		
		$('li#portfolio a').click(function()
		{
			$('ul#upperNav:hidden').fadeIn();
			$(this).parent('li').addClass('active');
			return false;
		});
		
		$('#content').cycle({timeout: 4500});
		
		$('#content a').click(function()
		{
			var view = $(this).attr('href');
			var name = $(this).attr('rel');
			window.open(view,name,"width=450,height=450");
			return false;
		});

	}
);