$(function(){
	$('.lnav').mouseover(function(){
		$(this).addClass('lnav_sel');
	});
	$('.lnav').mouseout(function(){
		$(this).removeClass('lnav_sel');
	});
	$('.tnav td').mouseover(function(){
		var imgid = $(this).attr('imgid');
		$(this).css('background-image',imgid);
	});
	$('.tnav td').mouseout(function(){
		if($(this).attr('current')!='true'){
			$(this).css('background-image','none');
		}
	});
	$('.gal_list td').mouseover(function(){
		$(this).css('border-color','#ebeceb');
	});
	$('.gal_list td').mouseout(function(){
		$(this).css('border-color','#FFF');
	});
	$('.prew img').mouseover(function(){
		$(this).css('height','40px');
	});
	$('.prew img').mouseout(function(){
		$(this).css('height','31px');
	});
	$('.modal_button').mouseover(function(){
		var img_over = $(this).attr('img_id');
		var img_out = $(this).attr('src');
		$(this).attr('src',img_over);
		$(this).attr('img_id',img_out);
	});
	$('.modal_button').mouseout(function(){
		var img_over = $(this).attr('img_id');
		var img_out = $(this).attr('src');
		$(this).attr('src',img_over);
		$(this).attr('img_id',img_out);
	})
})

