/* menu */
$(document).ready(function() {
	$(".leftside .menu ul").treeview( {
		animated : "normal",
		collapsed : true,
		unique : true,
		persist : "location"
	});
	/* podmiana klas dla tabel w kontencie strony */
	$(".middleside table[class!=no_default_class]").addClass('tabelka');
});

function resizeText(multiplier) {
    new_size = parseFloat($('#resize').css('font-size')) + (multiplier) + "px";
	$('#resize').css('font-size', new_size);
}
$(document).ready(function() {
$('#panel a:first').click(function(){
    $('body').append('<div id="fast_dialog" style=""><p>Wpisz jego adres e-mail, oraz treść wiadomości którą chcesz do niego wysłać</p></div>');
    $('#fast_dialog').append('<form style="margin: 30px 30px 0;" id="ampContactForm2" method="post" class="form-validate" action=""> <label for="email">E-mail znajomego*</label><input type="text" name="email" id="firstname" value="" class="ampContactText" /><label for="message">Wiadomość*</label><textarea type="text" name="message" id="message" value="" class="ampContactText" /><center><input type="submit" value="Wyślij" class="ampContactButton" id="kontakt_send" /></center><input type="hidden" name="ampContactAction" value="send" /><input type="hidden" name="check" value="post" /></form><div style="clear:both;"></div>');
    
    $('#ampContactForm2').submit(function(){
	  
	  f = document.getElementById('ampContactForm2');

	  if (f.email.value == '') {
	      alert('Proszę podać adres e-mail znajomego');
	      return false;
	  }
	  if (f.message.value == '') {
	      alert('Proszę wpisać treść wiadomości');
	      return false;
	  }
	  
	  $('#ampContactForm2').hide("slow");
	  $.ajax({
	    type: 'post',
	    url: '/form/polecaj',
	    data: $('#ampContactForm2').serialize(),
	    success: function(data) {
		$('#fast_dialog').dialog('close');
		$('body').append('<div id="fast_dialog_ok" style=""><div style="background-color: #fff;padding: 0pt 80px 20px;line-height:20px"><img style="float: left;" src="/templates/fpa/images/dialog_kontakt_ok.png" /><b>Wiadomość została przesłana.</b></div><hr><center><input type="button" id="closedialog" value="Zamknij" /></div>');
		$('#fast_dialog_ok').dialog({
		    close: function () { $('#fast_dialog_ok').remove() },
		    modal: true,
		    height: 260,
		    width: 570,
		    closeText: 'X',
		    dialogClass: 'fast_dialog_ok'
		  });
		 $('#closedialog').click(function() { $('#fast_dialog_ok').dialog('close'); } );
	    }
	  })
	    return false; 
    });   

    $('#fast_dialog').dialog({
      close: function () { $('#fast_dialog').remove() },
      modal: true,
      height: 300,
      width: 470,
      closeText: 'X',
      title: 'Poleć stronę ING Lease znajomemu',
      dialogClass: 'fast_dialog'
    });

  return false;
});
});
