/*$(document).ready(function () {
	$.sifr( {
		font: 'fonts/frutiger67.swf',
		textAlign : 'left'
	});

	$('h1,h2,h3').sifr( );
});*/

var $j = jQuery.noConflict();

$j(document).ready(function(){

//translations
	$j(".language").click(function(){
		$j("#translations").slideToggle('fast');
		return false;
	});
	$j("#translations").hover(function(){}, function(){
		$j(this).slideUp('fast');
	}); 

});

// Get Date For Form Processor
var getDate=new Date()
var getYear=getDate.getYear()
if (getYear < 1000)
getYear+=1900
var getDay=getDate.getDay()
var getMonth=getDate.getMonth()+1
if (getMonth<10)
getMonth="0"+getMonth
var getCurrentDay=getDate.getDate()
if (getCurrentDay<10)
getCurrentDay="0"+getCurrentDay
