// Copyright (c) 2009 Fuzzy Future Inc., All Rights Reserved.

$(document).ready( function( ) {
							
	$(".photo").mouseover ( function( ) {
		$(this).css( { 'background-color' : '#c93' } );
	}).mouseout( function( ) {
		$(this).css( { 'background-color' : '#333' } );
	});

});