$(document).ready(function() {
	if ($.browser.msie && $.browser.version <= 7)
	{
		var items = $('#navi ul li ul');
		items.each(function(ndx, val) {
			$(this).css('margin-left', '-' + $(this).closest('li').width() + 'px');
			$(this).closest('li').css('z-index', 9000);
		});
	}
	
	if ( $('#right').height() < window.innerHeight ) { 
		var top = $('#right').offset().top - parseFloat($('#right').css('marginTop').replace(/auto/, 0));
		$(window).scroll(function (event) {
			// what the y position of the scroll is
			var y = $(this).scrollTop();
			// whether thats below the form
			if (y >= top) {
				// if so, ad the fixed class
				$('#right').addClass('fixed');
			} else {
				// otherwise remove it
				$('#right').removeClass('fixed');
			}
		});
	}
	
	$('#agenda a:countains("meer info")').html('More');
	
	$('#frm_tSearchid').val('Search...');
	$('#right .more a').html('Read more');


	$('#navi ul:has(li > ul)').superfish({
		autoArrows: false,
		disableHI: false
	});
	
	
	
	$('#right .item:first div').each(function(){
    if ( $(this).hasClass('admin_overlay') )
        $(this).css('height','150px');
    }
	);
	
	$('#c_agenda h3').html('Latest News');
	
})
