jQuery(document).ready(function() 
{
	jQuery('.offer').hover(function () {
      $(this).css({'background-color' : '#384f5a' , 'color': '#FFFFFF' , 'cursor': 'pointer'});
    }, function () {
      $(this).css({'background-color' : '#FFFFFF' , 'color': '#384f5a'});
    });
	
		//Clic behavior : select
		/*jQuery(".offer").mousedown(function(e)
		{
			e.preventDefault();
			location.href='../../details/'+jQuery(this).attr('id')+'.html';
		});*/
 });
