// JavaScript Document

//图片透明度
$(document).ready(function(){
	$('img.rollover').hover(
		function(){$(this).css('opacity', 0.6)},
		function(){$(this).css('opacity', 1.0)}
	)
	});
	
//背景色变
$(document).ready(function(){ 
    $(".newCo li").hover(function() {
      $(this).css({'background' : '#eee url(/share/images/ico_circle2.gif) 5px 6px no-repeat'});
    }, function() {
      var cssObj1 = {
        'background' : '#fff url(/share/images/ico_circle1.gif) 5px 5px no-repeat'
      }
      $(this).css(cssObj1);
   })
});
