$(document).ready(function() {

	$('#xmas').snowfall({
		flakeCount : 50,        // number
		flakeColor : '#ffffff', // string
		flakeIndex: 999999,     // number
		minSize : 2,            // number
		maxSize : 3,            // number
		minSpeed : 1,           // number
		maxSpeed : 3,           // number
		round : false,          // bool
		shadow : false,         // bool
	});

/*
	===============================================
	 Menu
	===============================================
*/
	function showSubMenu(){
		$(this).addClass("hovered");
	}
	function hideSubMenu(){
		$(this).removeClass("hovered");
	}
	$("li.subMenu").hover(showSubMenu,hideSubMenu)

/*
	===============================================
	 Scrollable
	===============================================
*/
	$("#browsable").scrollable({
			easing: 'easeInOutExpo', 
			speed: 1800, 
			circular: true, 
			mousewheel: false
		}).navigator().autoscroll({
		interval: 4000
			
	});
	$("#referezen").scrollable({easing: 'easeInOutExpo', speed: 3000, vertical: true, circular: true, mousewheel: false}).autoscroll({
		interval: 100
	});
	$("#promotionjobs-scroller").scrollable({easing: 'easeInOutExpo', speed: 1500, vertical: true, circular: true, mousewheel: false}).autoscroll({
		interval: 4700
	});

/*
	===============================================
	 Equal Heights
	===============================================
*/
	$('.eq1').syncHeight();
	$('.eq2').syncHeight();
	$('.eq3').syncHeight();
	$('.eq4').syncHeight();
	$('.eq5').syncHeight();

/*
	===============================================
	 Tooltips
	===============================================
*/
	$("a[title]").tooltip();

/*
	===============================================
	 Misc
	===============================================
*/
	// Mailprotect
	$('.mail_nk').mailProtect({
		user: 'nk',
		domain: 'barongmbh.com',
		link: true
	});
	$('.mail_ek').mailProtect({
		user: 'eva.koball',
		domain: 'barongmbh.com',
		link: true
	});
	$('.mail_info').mailProtect({
		user: 'info',
		domain: 'barongmbh.com',
		link: true
	});
	// <tr> triggert Checkbox / Radiobutton
	$('tr').click(function(event) {
		if (event.target.type !== 'checkbox') {
			$(':checkbox', this).trigger('click');
		}
		if (event.target.type !== 'radio') {
			$(':radio', this).trigger('click');
		}
	});
	// "Jetzt Bewerben"-Links
	$(".applynow").html("<a href=\"trademarketing/promotionjobs.html\"><b>JETZT BEWERBEN!</b></span></a>");
	
});
