$(document).ready(function() {
			$("#main_navi_box").animate({"height": "54px"}, 100); //Animate container and move content down
			$("#bg_navi_box_l").animate({"height": "54px"}, 100); //Animate container and move content down
			$("#bg_navi_box_r").animate({"height": "54px"}, 100); //Animate container and move content down
			
            $('input:text').autoclear(); //autoclear the newsletter form
			
			$("ul#topnav li span a").hover(function() { //Hover over event on list item
				
				$(this).css({"background-image": "url('fileadmin/templates/victorian/img/bg_sub_navi_link_l.png')"}); //Animate container and move content down
				$(this).find(".sub_navi_link_box").css({"background-image": "url('fileadmin/templates/victorian/img/bg_sub_navi_link_m.png')"}); //Animate container and move content down
				$(this).find(".sub_navi_link_box_r").css({"background-image": "url('fileadmin/templates/victorian/img/bg_sub_navi_link_r.png')"}); //Animate container and move content down
			} , function() { //on hover out...
				$(this).css({"background-image": "none"}); //Animate container and move content down
				$(this).find(".sub_navi_link_box").css({"background-image": "none"}); //Animate container and move content down
				$(this).find(".sub_navi_link_box_r").css({"background-image": "none"}); //Animate container and move content down
			});
			
			$("ul#topnav li").hover(function() { //Hover over event on list item
				//$(this).css({ 'background' : '#1376c9 url(topnav_active.gif) repeat-x'}); //Add background color and image on hovered list item
				$(this).find("span").slideDown(0); //Show the subnav
				$("#main_navi_box").animate({"height": "92px"}, 100); //Animate container and move content down
				$("#bg_navi_box_l").animate({"height": "92px"}, 100); //Animate container and move content down
				$("#bg_navi_box_r").animate({"height": "92px"}, 100); //Animate container and move content down
			} , function() { //on hover out...
				//$(this).css({ 'background' : 'none'}); //Ditch the background
				$(this).find("span").delay(100).slideUp(0); //Hide the subnav
				
			});
			$("ul#topnav").hover(function() { //on hover out...
				//$("#main_navi_box").animate({"height": "54px"}, 100); //Animate container and move content down
				//$("#bg_navi_box_l").animate({"height": "54px"}, 100); //Animate container and move content down
				//$("#bg_navi_box_r").animate({"height": "54px"}, 100); //Animate container and move content down
				
			}, function() { //Hover over event on list item
				$("#main_navi_box").animate({"height": "54px"}, 100); //Animate container and move content down
				$("#bg_navi_box_l").animate({"height": "54px"}, 100); //Animate container and move content down
				$("#bg_navi_box_r").animate({"height": "54px"}, 100); //Animate container and move content down
			});
		});
