$(document).ready(function(){
						   
   $('body').pngFix();
   $('.box-date').corner();
  
   // Font Resize

	var originalFontSize = $('#content-wrapper').css('font-size');

	$(".increaseFont").click(function(){
		 
		  // alert('opa');
		  var currentFontSize = $('#content-wrapper p').css('font-size');
		  var currentFontSizeNum = parseFloat(currentFontSize, 10);
		  var newFontSize = currentFontSizeNum*1.2;
		  
		  if(newFontSize > 16){
			  
			   $('#content-wrapper p').css('font-size', 16);
			  
		  }else{
			  
			   $('#content-wrapper p').css('font-size', newFontSize);
		  }
	  
		  return false;
	});
	
	$(".decreaseFont").click(function(){
									  
		  var currentFontSize = $('#content-wrapper p').css('font-size');
		  var currentFontSizeNum = parseFloat(currentFontSize, 10);
		  var newFontSize = currentFontSizeNum*0.8;
		  
		  if(newFontSize < 8){
				
				 $('#content-wrapper p').css('font-size', 8);
				
		  }else{
			   $('#content-wrapper p').css('font-size', newFontSize);
		  }
		  
		  return false;
	});
 });

