$(document).ready(function(){
	// Toggle Function by: Max
	$("#product").click(function () {
		$(".subNavigation").slideToggle("slow");
	});

	$(function () {
		var tabContainers = $('div.tabs > .rotateTab');
		tabContainers.hide().filter(':first').show();
		$('div.tabs ul.tabNavigation a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('div.tabs ul.tabNavigation a').removeClass('active');
			$(this).addClass('active');
			return false;
		}).filter(':first').click();
	});
	
	// newTab
	$('a.newTab').attr('target','_blank');
		
	// accordion Function by: radiz
	if ($('#contactInformation').get( 0 )) {
		$('#contactInformation').accordion({
			active: false,
			alwaysOpen: false,
			animated: "bounceslide",
			autoheight: false,
			header: "dt"
		});
	}
	
	if ($('#corpateMap').get( 0 )) {
		$('#corpateMap').accordion({
			active: false,
			alwaysOpen: false,
			animated: "bounceslide",
			autoheight: false,
			header: "p"
		});
	}
		
	
});