
	function changeDomain(){
		jQuery('.domainInput').slideDown('fast');
	}
	
	function setTarif(plan, time){
		jQuery('#time').val(time);
		jQuery('#plan').val(plan);
		jQuery('.hostingAccept').slideDown('fast');
		jQuery('.hostingAccept').corners('5px bottom');
	}
	
	jQuery(document).ready(
		function(){
			//jQuery('.hostingCost').corners('5px');
			jQuery('.hostingTime').corners('5px top');
			jQuery('.hostingPlan').corners('5px left');
			jQuery('.domainSelect').corners('5px');
			jQuery('.domainInput').corners('5px');
			jQuery('.bill').corners('5px');
			jQuery('.auth').corners('5px');
			jQuery('.loginBlock').corners('5px');
			
			jQuery('.hostingCost').hover(
				function (){
					jQuery(this).css('background-color', '#ffbbcc');
					jQuery(this).css('color', '#666666');
				},
				function (){
					jQuery(this).css('background-color', '');
					jQuery(this).css('color', '');
				}
			);
			jQuery('.hostingCost').click(
				function (){
					jQuery('.hostingCostS').attr('className', 'hostingCost');
					jQuery(this).attr('className', 'hostingCostS');
				}
			);
		}
	)
