$(document).ready(function() {
	$('div#packages li').mouseover(function() {
		$(this).addClass('over');
		var id = $(this).attr('id').replace('sp', 'd');
		$('div.details').hide();
		$('div#'+id).fadeIn();
	}).mouseout(function() {
		$(this).removeClass('over');
	});
	
	$('div.details:first').show();
});