$(document).ready(function() {
	$(".choices ul li").click(function() {
		$(this).find(".rad input").get(0).checked = true;
		$(".choices ul li.current").removeClass("current");  
		$(this).addClass("current"); 
	});
	
	$(".choices ul li").hover(
		function() {
			$(this).addClass("hover");
		},
		function() {
			$(this).removeClass("hover");
		}
	);
	
	$(".packages .action-wrap").click(function() {
		$(this).find("input").get(0).checked = true;

		$(".packages .action-wrap").addClass("transparent");
		$(this).removeClass("transparent");
        $('.choices-details-wrap .choices').removeClass('current');
        $('.choices-details-wrap .choices.' + $(this).find("input").val()).addClass('current');
	});
    
    $('.packages input').change(function() {
        $('.choices-details-wrap .choices.current').removeClass('current');
        $('.choices-details-wrap .choices.' + $(this).val()).addClass('current');
    });
});

