$(document).ready(function() {
	$('.projects_all_preview_box').find(".img_pre").hover(
	function(){
		$(this).css('opacity',1);
	},
	function(){
		$(this).css('opacity',0.7);
	}
	);
});
 


