//---------------------------------
// switch entry data info
// --------------------------------

$(document).ready(function() {
	$("div.entry").hover(function() {
		var entry_id = $(this).attr('rel');
		$("#first_"+entry_id).hide();
		$("#second_"+entry_id).show();
	},
	function() {
		var entry_id = $(this).attr('rel');		
		$("#first_"+entry_id).show();
		$("#second_"+entry_id).hide();

	})
});

