$(document).ready(function() {
	
	
/* for the portfolio pages */
	
	$('.project img').mouseover(function() {
		$(this).css('border-color', '#000000');
	});
	
	$('.project img').mouseout(function() {
		$(this).css('border-color', '#c2c2c2');
	});
	
});

