function init() {
	$("#navigation .page_item a").mouseenter(function(){
		if($(this).parent().hasClass("current_page_item")) return;
		$(this).css("border-bottom-width", "0px");
		$(this).css("height", "47px");
		$(this).animate({"border-bottom-width": "8px", "height": "39px"}, "fast", "swing");
		//alert("hello");
	});
	
	// Special case for only a single image
	var animate = true;
	if($('.ad-single').length == 1)
		{
			animate = false;
		};
		
	var galleries = $('.css_slideshow .ad-gallery').adGallery({
		loader_image: 'loader.gif',
		thumb_opacity: 1,
		start_at_index: 0,
		display_next_and_prev: true,
		effect: "fade",
		animation_speed: 600,
		slideshow: {
		    enable: animate,
		    autostart: true,
		    speed: 9000,
		    start_label: 'Start',
		    stop_label: 'Stop',
		    stop_on_scroll: true
		  }
	});
		
	
	var galleries = $('.css_gallery .ad-gallery').adGallery({
		loader_image: 'loader.gif',
		thumb_opacity: 1,
		start_at_index: 0,
		display_next_and_prev: true,
		effect: "fade",
		animation_speed: 600,
		slideshow: {
		    enable: false
		  }
	});
	
}
