$(document).ready(function() {

	$('.tabs-display').hide();
	$('#package-information').addClass('selected-profile-tab').show();
	$('.selected-profile').show();
	
	$('.profile-tab').click(function() {
		$('.selected-profile-tab').removeClass('selected-profile-tab');
		$('.selected-profile').hide();
		
		$(this).addClass('selected-profile-tab');
		$('#'+$(this).attr('id')+'-display').show().addClass('selected-profile');
	});

	
	
	// Giant checkbox it!
	$('.giant-checkbox').each(function() {
		$(this).giantcheckbox({size:'39px',bgcolor:'url(/images/giant_tick_bg.png) 0 0 no-repeat;padding:10px 0 0 10px',dborder:'none',margin:'0',resize:false}); 
	});	
	//$('.giantcheckbox').addClass('disabled');


});