$(document).ready(function() {

// block show/hide - more info about WP

$('#more-info').hide();
$('#show-more-info').addClass('hiding');

$('#show-more-info').click(function(){
	$(this).toggleClass('hiding');
	$('#more-info').slideToggle();
});


// block show/hide - more about prices & services

$('#more-services-prices').hide();
$('#show-more-services-prices').addClass('hiding');

$('#show-more-services-prices').click(function(){
	$(this).toggleClass('hiding');
	$('#more-services-prices').slideToggle();
});


// price calculating -----------------------------------------------------------

recountPrice();


$('#more-services-prices input[type=checkbox]').click(function() {	
	recountPrice();
});


function recountPrice(){
	var items = 0;
	if ($('#more-services-prices *[name=g]').attr('checked')) items++;
	if ($('#more-services-prices *[name=c]').attr('checked')) items++;
	if ($('#more-services-prices *[name=w]').attr('checked')) items++;
	
	var price = items * 3000 - (Math.abs(items-1)*1000);
	if (price < 0) price = 0;
	$('#more-services-prices .sume em').text(price);
}


$('tr').click(function(){
	$(this).toggleClass('selected');
});


var hash=location.hash;
if (hash){
	$(hash).addClass('selected');
}

// else ---------------


$('textarea').autogrow();


}); // end document.ready...