function showPrice(element) {

	hideAll();
	
	/*
          ,     ,
         (\____/)
          (_oo_)
    		(O) ho-ho-ho, what a f' are you doing here ?
          __||__    \)
       []/______\[] /
       / \______/ \/
      /    /__\
     (\   /____\

	*/
	
	// Mark label
	$(".price > div#" + element.id).addClass('active');
	
	// Show block
	$("div#" + element.id + '-content').slideDown('slow');

}

function hideAll() {
	
	// Hide links
	$(".price > div").removeClass('active');
	
	// Hide content
	$(".price-value").hide();
	
}
