$(document).ready(function() {
	//Page Border
	var ph = $('#page_CONTENT').height();
	$('#border_L').css('height',ph+'px');
	$('#border_R').css('height',ph+'px');
	//Input Hints
	$('input[title]').inputHints();
	//Aerial View
	$('a.preview').lightBox();
 	// Increase Font Size
 	$("#fontUp").click(function(){
 		 var currentFontSize = $('#rightMain').css('font-size');
		 var currentFontSizeNum = parseFloat(currentFontSize, 10);
   		 var newFontSize = currentFontSizeNum*1.2;
		 if(newFontSize<=32){
 		 	$('#rightMain').css('font-size', newFontSize);
		 }
		 var ph = $('#page_CONTENT').height();
		$('#border_L').css('height',ph+'px');
		$('#border_R').css('height',ph+'px');
 		 return false;
 	});
 	// Decrease Font Size
 	$("#fontDown").click(function(){
  		var currentFontSize = $('#rightMain').css('font-size');
 		var currentFontSizeNum = parseFloat(currentFontSize, 10);
 		var newFontSize = currentFontSizeNum*0.8;
		if(newFontSize>=8){
 			$('#rightMain').css('font-size', newFontSize);
		}
		var ph = $('#page_CONTENT').height();
		$('#border_L').css('height',ph+'px');
		$('#border_R').css('height',ph+'px');
 		return false;
 	});
});
