$(function(){
	$('.optionbox p').css({
		cursor: 'pointer'
	}).hover(function(){
		$(this).css({backgroundColor:'#DBF7F3'});
	},function(){
		$(this).css({backgroundColor:'#eaeaea'});
	});
	$('.optionbox a').each(function(){
		var Href = $(this).attr('href');
		$(this).parent().click(function() {
			window.open(Href,'_self');
			return false;
		});
	});
});

