/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(
	function() {
		var art = $("div.entry");
		art.mouseover(
			function() {
				$(this).css("border-color", "#000000");
			}
		);
		art.mouseout(
			function() {
				$(this).css("border-color", "#7D7B7B");
			}
		);
	}
);


