/**
 * @name index.js
 */

//jQuery.noConflict();

(function($){
	$(function() {
		$('.cmnbox01 .list li:odd').addClass('oddLine');
		$('.cmnbox02 .list li img').hover(
			function(){
				$(this).css('opacity','0.7');
			},
			function(){
				$(this).css('opacity','1.0');
			}
		);

	});
})(jQuery);
