$(document).ready(function(){

$(".photo").mouseover
(
	function()
	{ 
		$(this).css({opacity:"1",fontWeight:"bolder",border:"#333331 solid 1px" })
	}
);
$(".photo").mouseout
(
	function()
	{ 
		$(this).css({opacity:"0.7",fontWeight:"",border:"#333331 dotted 1px" })
	}
);

$(".photo").click
(
	function()
	{ 
		$(this).css({opacity:"0.7",fontWeight:"",border:"#333331 dotted 1px" })
	}
);


$("a.thumb, img.thumb").thumbs(); // the wrapping function
$("a.thumb img, img.thumb").thumbsImg(); // the img positioning function (optional)

});
