// JavaScript Document
jQuery(
	function($) {
		$(".view-content a img").hover(
			function(){
				$(this).fadeTo("fast", 0.7);
			},
			function(){
				$(this).fadeTo("fast", 1);
			}
		);
	}
);
;

