// for div:hover action
(function($){$.fn.biggerlink=function(a){var b={hoverclass:'hover',clickableclass:'hot',follow:true};if(a){$.extend(b,a)}$(this).filter(function(){return $('a',this).length>0}).addClass(b.clickableclass).each(function(i){$(this).attr('title',$('a[title]:first',this).attr('title'));$(this).mouseover(function(){window.status=$('a:first',this).attr('href');$(this).addClass(b.hoverclass)}).mouseout(function(){window.status='';$(this).removeClass(b.hoverclass)}).bind('click',function(){$(this).find('a:first').trigger('click')}).find('a').bind('focus',function(){$(this).parents('.'+b.clickableclass).addClass(b.hoverclass)}).bind('blur',function(){$(this).parents('.'+b.clickableclass).removeClass(b.hoverclass)}).end().find('a:first').bind('click',function(e){if(b.follow==true){window.location=this.href}e.stopPropagation()}).end().find('a',this).not(':first').bind('click',function(){$(this).parents('.'+b.clickableclass).find('a:first').trigger('click');return false})});return this}})(jQuery);

$(document).ready(function() {
$(".works_container ul.clearfix li:even").css("background-color","#f0f0f0");
$("ul.goods_list:even").css("margin-right","30px");
$('.biggerlink').biggerlink(); 
$("#news_hide").slideToggle(1200);
$("#tab_news").hover(function(){
$(this).css("cursor","pointer");
},function(){
$(this).css("cursor","default");
});
$("#close_news").hover(function(){
$(this).css("cursor","pointer");
$(this).css("color","#f90");
},function(){
$(this).css("cursor","default");
$(this).css("color","#fff");
});
$("#tab_news").click(function(){
$("#news_hide").slideToggle("normal");
$(this).toggleClass("news_off");
});
});