/*  ================================================================================
 *
 *   nexia wp site JavaScript
 *
================================================================================  */

jQuery(function($) {
	$("img.logo").hover(function() {
		$(this).css('opacity', '0.6');
	}, function() {
		$(this).css('opacity', '1');
	});

	$("img.category_img").hover(function() {
		$(this).css('opacity', '0.6');
	}, function() {
		$(this).css('opacity', '1');
	});

	$(".flexi-banners img").hover(function() {
		$(this).css('opacity', '0.6');
	}, function() {
		$(this).css('opacity', '1');
	});

});


