
$(document).ready(function() {
	$('.contenttable tr').find('td:first').css({textAlign: 'left', width: '55%'});
	$('.contenttable tr').find('td:last').css({textAlign: 'right', width: '8%'});

	var count = 0;
	$('#newsSingleItem ul li').each(function(){
		count ++;
		if(count % 2 == 0) {
			$(this).attr('class', 'even');
		} else {
			$(this).attr('class', 'odd');
		}
	});
	
	
	$('#mainNavigation > li').bind('mouseover', function(event){
		event.preventDefault();
		
		//$(this).find('div ul').show(400);
		$(this).addClass('hover');
	});
	$('#mainNavigation > li').bind('mouseout', function(event){
		event.preventDefault();
		
		$(this).removeClass('hover');
	});
});


