$(document).ready(function() {
  
  // przycisk powrotu
  $('a.back').bind('click', function(){
  history.back();
  return false;
  });
  
  // wywolanie drukowania
  $('a.print').bind('click', function(){
  window.print();
  return false;
  });

  // wywolanie ladnego selecta
  $('.the_city').sSelect({ddMaxHeight: '160px'});
  $('.the_city_sub').sSelect({ddMaxHeight: '340px'});
  
  // przekierowanie na strone w selekcie wyboru miasta
  $("#change_town").submit(
  function(){
    if($(".the_city").val() != '' && $(".the_city").val() != 'undefined')
    {
      location.href = "/"+$(".the_city").val()+"/";
    }
    return false;
   
  });
  $("#change_town_sub").submit(
  function(){
    if($(".the_city_sub").val() != '' && $(".the_city_sub").val() != 'undefined')
    {
      location.href = "/"+$(".the_city_sub").val()+"/";
    }
    return false;
   
  });
    
});

var offerInternet;
var offerTelewizja;
var offerTelefon;



//funkcja przelicza wartości oferty w formularzu ofert
function countOffer()
{
	offerInternet = parseFloat($("#int_f").val());
	offerTelewizja = parseFloat($("#tv_f").val());
	offerTelefon = parseFloat($("#tel_f").val());
	offer_value = offerInternet + offerTelewizja + offerTelefon;
	$("#value_oferta").val(offer_value);
}
