$(document).ready(function(){
	$('<link>').appendTo('head').attr({
		rel: 'stylesheet',
		type: 'text/css',
		href: '/org_files/674/css/jquery.fancybox-1.3.3.css'
	});
	$("a.helpWindow").fancybox({
		'width': 595,
		'height': 160,
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayOpacity': 0.5,
		'overlayColor': '#000',
		'type': 'iframe'
	});

	// clear searchbar value onfocus
	$(".searchfield").focus(function() {
	$(this).val("");
	}).blur(function() {
			if ($(this).val() == "") {
					$(this).val($(this)[0].defaultValue);
			}
	});
	
	// init suckerfish
	$("ul.sf-menu").superfish({ 
			animation:   {height:'show'}, // slide-down effect without fade-in 
			animation:   {opacity:'show',height:'show'},
			speed:       'fast',          // faster animation speed 
			dropShadows: true,
			autoArrows:  false,           // disable generation of arrow mark-up 
			delay:       1200             // delay on mouseout 
	});
});
