jQuery(document).ready( function( $ ) {
	
	$(".results-box").hover( 
		function( ) {
			$(this).css( {'background-color' : '#333'} );
		}, 
		function( ) {
			$(this).css( {'background-color' : '#398BBA'} );
		}
	);
	
	$(".results-box").click(
		function( ) {
			window.location = $(this).children(".linkto").html( );//.attr( "alt" );
		}
	);
	
	$('a.lightbox').lightBox();
	
});