// JavaScript Document
// initialise plugins
$(function(){
	if($.browser.msie && $.browser.version == 6){$('#header_image').pngFix( ); $('#page_container').css('paddingTop', '40px'); }
	$('.menu_button.selected a span').dropShadow({left: 1, top: 1, opacity: 0.6, blur: 1, color: "black"});
	$('.menu_button')
		.css( {backgroundPosition: "0 0px"} )
		.mouseover(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 -160px)"}, 
				{duration:100})
			})
		.mouseout(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 0px)"}, 
				{duration:100})
			});
	//$('.cycle_image span').fadeIn(1000);
	//$('.cycle_image').cycle({pause: true, timeout: 10000});
	//$('#tabs_cell').tabs(/*{ fxSlide: true, fxFade: true }*/);
	//$('#search_form #search_bar').input_replacement({text: 'SEARCH'});
	$('a.email').each(function() {
			var address = $(this).attr('href').replace("AT_SYMBOL", "@");
			var address = address.replace("DOT", ".");
			$(this).attr('href', address);
	});
});
// embed flash movie
swfobject.embedSWF("/includes/flash/astib_planet.swf", "astib_globe", "237", "188", "8", "/includes/flash/expressInstall.swf", {}, {wmode:"transparent"}, {});

