//________global functions________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
$(document).ready(function(){ 
 	
 	// #### enable superfish navigation menu
	$("#navigation_menu").superfish({		
		'delay':			'20',
		'animation':   	{ opacity	:'none', height:'none' },
		'speed':       	'fast',
		'dropShadows': 	'false',
		'autoArrows':  	'false'
	});		
	$('#navigation_menu').superfish().find("ul").bgIframe({opacity:false}); // add this bit for bgIframe support only

	// #### set tooltips
	$('label').each(function() {	
		if ($(this).attr("class").length<=0)	
			if ($(this).attr("title").length>0) 
				$(this).addClass("label_help");
	});
	
	$('a[title]').tooltip({ 'fade':250, 'showURL':false }); 	
	$('label[title]').tooltip({ 'fade':250, 'showURL':false }); 	
	
	// #### set prettycheckboxes
	$('input[type=checkbox], input[type=radio]').each(function() {
		if ($(this).attr("class").indexOf("none")<0)
			$(this).prettyCheckboxes()
	});
		
	// #### set textbox focus style
	$('input[type=text].textbox, textarea.textbox').focus(function() {
		$(this).addClass("textbox_focus");
	});
	// #### set textbox blur style
	$('input[type=text].textbox, textarea.textbox').blur(function() {
		$(this).removeClass("textbox_focus");
	});	
	
	// #### pictures lazyload fadein effects
	$("img").each(function() {
		if ($(this).attr("class")) {
			if ($(this).attr("class").indexOf("none")<0)
				$(this).lazyload({ 
					effect      : "fadeIn" 	
				});
		}
	});	
}); 
