$(document).ready(function() {
						   
	$('.newsList .box')
	.css('cursor', 'pointer')
	.hover(function() {
		$(this).addClass('activeBox');								   
	}, function() {
		$(this).removeClass('activeBox');								   
	})
	.click(function() {
		document.location.href = $(this).find('h3 a').attr('href');				
	});
	
	$('input.text, textarea').focus(function() {
		if ($(this).hasClass('textShort')) {
			$(this).addClass('textShortFocus');
		} else if ($(this).hasClass('textShort2')) {
			$(this).addClass('textShort2Focus');
		} else {
			$(this).addClass('textFocus');
		}
	}).blur(function() {
		if ($(this).hasClass('textShort')) {
			$(this).removeClass('textShortFocus');
		} else if ($(this).hasClass('textShort2')) {
			$(this).removeClass('textShort2Focus');
		} else {
			$(this).removeClass('textFocus');
		}
	});
	
	$('.buttonG').animate({ opacity: '0.75' }, 200 );
	$('.buttonG').hover(function() {
		$(this).animate({ opacity: '1' }, 200 );
	}, function() {
		$(this).animate({ opacity: '0.75' }, 200 );
	});
	
	$('.ezoSections li').css('cursor', 'pointer')
	.hover(function() {
		$(this).addClass('active').find('img').animate({ opacity: '1' }, 200 ).end().find('p').animate({ opacity: '1' }, 200 );
	}, function() {
		$(this).removeClass('active').find('img').animate({ opacity: '0.55' }, 200 ).end().find('p').animate({ opacity: '0.75' }, 200 );
	}).click(function() {
		document.location.href = $(this).find('h2 a').attr('href');	
	});
	
});