/******************************************************/
/* File: iandevlin-min.js                             */
/* Version: 0.2                                       */
/* Created: 18/03/2010                                */
/* Author: Ian Devlin (http://www.iandevlin.com)      */
/******************************************************/
var roman=new Array();roman=["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"];var decimal=new Array();decimal=[1000,900,500,400,100,90,50,40,10,9,5,4,1];function decimalToRoman(value){if(value<=0||value>=4000)return value;var romanNumeral="";for(var i=0;i<roman.length;i++){while(value>=decimal[i]){value-=decimal[i];romanNumeral+=roman[i]}}return romanNumeral}function setTitleRollOver(){document.getElementById('titleImage').title+=" "+decimalToRoman(new Date().getFullYear())}function goto(url){document.location.href=url}function toggleDisplay(id){var item='#'+id;if($(item).is(':hidden')){if($('.formmarker').is(':visible'))$('.formmarker').slideUp('slow');

$("#item").css('padding: 10px','text-align: justify')

$(item).oneTime(1,function(){$(item).slideDown('slow')})}else $(item).slideUp('slow')}function slideUpInterval(id,interval){var item='#'+id;$(item).oneTime(interval,function(){$(item).slideUp('slow')})}$(function(){$("#sendEmail").click(function(){var dataString=$('form').serialize();$.ajax({type:"POST",url:"sendemail.php",data:dataString,cache:false,success:function(response){if(response=="ok"){document.getElementById("emailcontainer").innerHTML="Thank you";slideUpInterval('emailbox',100)}else{document.getElementById("formerror").style.display="block";document.getElementById("formerror").innerHTML=response}}});return false})});


