window.addEvent('domready', function(){



	hs.graphicsDir = 'script/graphics/';

	hs.showCredits = false;

	outlineType = 'drop-shadow';

	hs.preloadImages(5);

	var items = $$('ul.navigation li');



	items.each(function(element) {



		var fx = new Fx.Styles(element, {duration:200, wait:false});

	

		element.addEvent('mouseenter', function(){

			fx.start({

				'margin-left': 10

			});

		});

		

		element.addEvent('mouseleave', function(){

			fx.start({

				'margin-left': 17

			});

		});

	});	

});



function popitup(url,pHeight,pWidth) {

	var sets = 'height=' + pHeight + ',width=' + pWidth;

	newwindow=window.open(url,'name',sets);

	if (window.focus) {newwindow.focus()}

	return false;

}

