// simple hide no animation
function hide(id){  if (document.getElementById){  obj = document.getElementById(id);  obj.style.display = "none";  } }

// simple show no animation
function show(id){  if (document.getElementById){  obj = document.getElementById(id);  obj.style.display = ""; } }

// jquery hide, show and toggle
function ajaxshow(id){	$(id).fadeIn("slow");	}
function ajaxhide(id){	$(id).fadeOut("slow");	}
function toggle(id)  {	$(id).slideToggle("fast");  }

// cufon replacements
Cufon.replace('h1, h2, .content h4, #content h4, .applyfont', { textShadow: '1px 1px #ffffff', hover: true, fontFamily: 'Zurich' });

Cufon.replace('h3', { textShadow: '0px 0px #ffffff', hover: true, fontFamily: 'Arial Round' });

Cufon.replace('.domain-arama h1,.domainle h2', { textShadow: '0px 1px #000', hover: true, fontFamily: 'TitilliumText22L Rg' });

Cufon.replace('.DQLA li', { textShadow: '0px 0px #fff', hover: true, fontFamily: 'Arial Round' });
Cufon.replace('.DQLA .DQD,.DQLA .DQP', { textShadow: '1px 1px #fff', hover: true, fontFamily: 'Arial' });

Cufon.replace('.bubble-one h2, .bubble-one h3, .bubble-one-alt h2, .bubble-one-alt h3', { textShadow: '1px 1px #5b5b5b', hover: true, fontFamily: 'Zurich' });
Cufon.replace(' .bubble-two h2, .bubble-two h3', { textShadow: '1px 1px #125ea1', hover: true, fontFamily: 'Zurich' });
Cufon.replace(' .footer-big h3', { textShadow: '1px 1px #424242', fontFamily: 'Zurich' });
Cufon.replace(' .mainmenu', { textShadow: '1px 1px #ffffff', hover: true , fontFamily: 'Arials' });
Cufon.replace(' .form-button', {textShadow: '1px 1px #5d5d5d', hover: true , fontFamily: 'Arial Round' })

Cufon.replace(' ul.pricing-col li.tops h2, ul.pricing-col-highlight li.tops h2', { textShadow: '1px 1px #5d5d5d', hover: true, fontFamily: 'Zurich' });


// dd_roundies for damned IE, make rounded corners on some boxes
DD_roundies.addRule('.outer-rounded-box', '10px');
DD_roundies.addRule('.outer-rounded-box-bold', '12px');
DD_roundies.addRule('.inner-rounded-box-filled-grey', '10px');
DD_roundies.addRule('.inner-rounded-box-filled-white', '10px');
DD_roundies.addRule('.inner-rounded-box-gradient-up', '10px');
DD_roundies.addRule('.inner-rounded-box-gradient-down', '10px');
DD_roundies.addRule('.simple-rounded-box', '10px');
DD_roundies.addRule('form select', '5px');
DD_roundies.addRule('form input', '5px');
DD_roundies.addRule('form textarea', '5px');


