//global

$(document).ready(function() {
   


$(".clear-both + h1").css("margin-top", "1em");

$("p + h3, ul + h3, .storyBox + h3").css("margin-top", "2em");

$('p + h2').css("margin-top", "2em");
$('#mainColumn>.storyWrap>a + h2').css("margin-top", "3em");
$('#mainColumn>.storyWrap>div + h2').css("margin-top", "3em");

$('#mainColumn>.storyWrap>p + dl').css("margin-top", "2em");
$('#mainColumn>.storyWrap>ul + dl').css("margin-top", "2em");


  $.localScroll({duration:300}); 



$(".round").corner("10px");


$("#mainColumn .storyWrap").corner("12px");







$('#mainColumn>.storyWrap>ul>li>a[href$=".pdf"]').prepend( " " + "<img src='Styles-2008/g/icons/Acrobat_icon.jpg' border='0'  title='' alt='' class='' />" + "&nbsp;");

$('#mainColumn>.storyWrap>p>a[href$=".pdf"]').prepend( " ", "<img src='Styles-2008/g/icons/Acrobat_icon.jpg' border='0'  title='' alt='' class='' />" + "&nbsp;");



// list expander




$("dl.listExpander > dd").hide ();


$("dl.listExpander>dt").toggleClass('listExpanderRight');

$("dl.listExpander >dt").click(function(){
   
            $(this).toggleClass('listExpanderRight');
          $(this).toggleClass('listExpanderDown');
     
          $(this).next().toggle('fast');
	});






// use this to obfuscate email

$('a.email').each(function(){
			e = this.rel.replace('/','@');
                        
                         theText = "Email"
			this.href = 'mailto:' + e;
		
		});





});






	






