$(document).ready(function() {
	
	if( !$.support.opacity ) {
    	$('#header h2').html('Your browser\'s weak - you\'re better than that. Try downloading the latest versions of <a href="http://google.com/chrome">Chrome</a> or <a href="http://mozilla.com/">Firefox</a> for free');
	}
	
	//set links to go to new tab in portfolio
	$('.portfolio #content ul li h3 a').attr('target','_blank');

	//javascript-alize porfolio slide-down li's	
	$('#content ul li:not(#content ul li ul li)').addClass('jv');
	$('.portfolio #content').addClass('.content-wrap');
	
	$('#cmal').show();
		
	$('#sidebar dl dd a').click(function() {
		var href = $(this).attr('href');
		if( !$(href).is(':visible') ) {
			$('#content ul li:not(#content ul li .text ul li)').slideUp();
			$(href).css('zIndex','30').slideDown();
		} else {
			$(href).animate( {"opacity" : 0.8} );
			$(href).animate( {"opacity" : 1} );
		}
		return false;
	});
	
	//change "back to top" links to show/hide the info box
	$('#content .info').hide();	
	$('#content ul li:not(#content ul li ul li)').hover(function() {
		$(this).find('.info').slideDown();
	}, function() {
		$(this).find('.info').slideUp();
	});
	
	//faq scroll down local scroll
	//$('#content').localScroll();

});