$(document).ready(function(){
		//external window
 $('A[class="external"]').click( function() {
 window.open( $(this).attr('href') );
 return false;
 });
 
  // Reset Font Size
  var originalFontSize = $('html').css('font-size');
    $(".resetFont").click(function(){
    $('html').css('font-size', originalFontSize);
  });
  // Increase Font Size
  $(".increaseFont").click(function(){
    var currentFontSize = $('html').css('font-size');
    var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*1.2;
    if (newFontSize < 25) {
			$('html').css('font-size', newFontSize);
}	
    return false;
  });
  //forms - validate
	$("#form_contact").validate();
	$("#form_offerte").validate();
	$("#form_sollicitatie").validate();
	
  // Decrease Font Size
  $(".decreaseFont").click(function(){
    var currentFontSize = $('html').css('font-size');
    var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*0.8;
    	if (newFontSize < 20) {
			$('html').css('font-size', newFontSize);
}	
    return false;
  });
});


