/* functions ---------------- */function clearInput(inputName,baseText){	formInput = document.getElementById(inputName);	formInput.value = (formInput.value == baseText) ? '' : formInput.value;}function fillInput(inputName,baseText){	formInput = document.getElementById(inputName);	formInput.value = (formInput.value == "") ? baseText : formInput.value;}/* jquery ---------------- */$(document).ready(function(){	$("a[rel^='prettyPhoto']").prettyPhoto({autoplay_slideshow: false, autoplay: false,allow_resize: false, theme: 'light_rounded'});	if($.cookie('TEXT_SIZE')) {	  $('body').addClass($.cookie('TEXT_SIZE')); 	 }	 $('.resizer a').click(function() {	  var textSize = $(this).parent().attr('class');	  $('body').removeClass('small medium large').addClass(textSize);	  $.cookie('TEXT_SIZE',textSize, { path: '/', expires: 10000 });	  return false;	 });});
