$(document).ready(function() {



	$('.projects h3').hide();
	$('.projects .hidden').hide();
	$('.projects .show_more_projects').show();
	$('.projects .tn').css('border', 'none');
	$('.projects .tn img').css('margin', '0');
	
	
	
	$('.projects li').hover(function() {		
		$('h3', this).show(60);
		$('.tn img', this).css('margin', '-5px');
		$('.tn', this).css('border', '5px solid #ebebeb');
	}, function() {	
		$('h3', this).fadeOut(50);
		$('.tn img', this).css('margin', '0');
		$('.tn', this).css('border', 'none');
	});
	
	

	$('.projects h3 a').hover(function() {		
		$(this).parent().children('.tn').css('border', '5px solid #ebebeb');
		$(this).parent().find('img').css('margin', '-5px');
	}, function() {	
		$(this).parent().children('.tn').css('border', 'none');
		$(this).parent().find('img').css('margin', '0px');
	});
	
	
		
	$('.projects .show_more_projects a').click(function() {	
		$('.projects .hidden').hide();
		$('.projects .show_more_projects').show();
		$(this).parents('.project_type').find('.hidden').fadeIn(500);
		$(this).parent().hide();
		return false;	
	});
	$('.projects h2').click(function() {	
		$('.projects .hidden').hide();
		$('.projects .show_more_projects').show();
		$(this).parents('.project_type').find('.hidden').fadeIn(500);
	});



});