$(document).ready(function(){
							$('.gallery .post').mouseover(function(){
														   $(this).css({
																	   'background':'#FAFAFA',
																	   'cursor':'pointer'
																	   });
														   });
							$('.gallery .post').mouseout(function(){
														   $(this).css({
																	   'background':'none'
																	   });
														  });
							});
