Shadowbox.init();

function initDropDown(navigation)	{
	navigation.each(function(i, element){
		$(element).mouseover(function() {
			$('#mainNavigation li').removeClass('acthover');
			$(this).addClass('acthover');
		});
		$(element).mouseout(function() {
			$(this).removeClass('acthover');
		});
	});
}

$(document).ready(function() {
	$('#tx_indexedsearch_sword').bind('focus', function(event) {
		this.oldValue = $(this).val();
		$(this).val('');
	});
	
	$('#tx_indexedsearch_sword').bind('blur', function(event) {
		if($(this).val() == '') {
			$(this).val(this.oldValue);
		}
	});
	
	initDropDown($('#mainNavigation li'));
});
