$(document).ready(function ( ) {
	if ($("#aanbod")[0]) {
		$(".objects .object").hover(function ( ) {
			var $this	=	$(this),
			    $prev	=	$this.prev(),
			    $next	=	$this.next();
			
			if ($prev.hasClass("hr")) {
				$prev.toggleClass("hide");
			}
			
			if ($next.hasClass("hr")) {
				$next.toggleClass("hide");
			}
		});
	}
}());

