$(document).ready(function(){

	// Drop Down Menu
	if ( $('#dropDownMenu').length ) {

		$('#dropDownMenu li').hover(function(){
				$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400); },
				function(){ $(this).find('ul:first').css({visibility: "hidden"});
		});
	}

});



var tgs = new Array( 'h1','h2','p','span');

//Specify spectrum of different font sizes:
var szs = new Array( '11px','','12px%','13px','14px','15px','16px' );
var startSz = 2;

function ts( trgt,inc ) {
if (!document.getElementById) return
var d = document,cEl = null,sz = startSz,i,j,cTags;

sz += inc;
if ( sz < 0 ) sz = 0;
if ( sz > 6 ) sz = 6;
startSz = sz;

if (!( cEl = d.getElementById( trgt ) ) ) cEl = d.getElementsByTagName( trgt )[ 0 ];

cEl.style.fontSize = szs[ sz ];

for ( i = 0 ; i < tgs.length ; i++ ) {
cTags = cEl.getElementsByTagName( tgs[ i ] );
for ( j = 0 ; j < cTags.length ; j++ ) cTags[ j ].style.fontSize = szs[ sz ];
}
}
