// JavaScript Document
// initialise plugins
$(function(){
	$('.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').fadeIn(1000);
	$('.cycle_image').cycle({pause: true, delay:-9000, timeout: 10000});
	$('#tabs_cell').tabs(/*{ fxSlide: true, fxFade: true }*/);
	$('#tabs_cell .2way_link')
		.click(function() {
			$('#tabs_cell').triggerTab(3);
		});
	$('#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', 'mailto:' + address);
	});
	if($.browser.msie && $.browser.version == 6){$('#header_image').pngFix( );}
	//$('#three_step_from').validate();
});
// embed flash movie
swfobject.embedSWF("/includes/flash/astib_planet.swf", "astib_globe", "237", "188", "8", "/includes/flash/expressInstall.swf", {}, {wmode:"transparent"}, {});

