$(function(){
	$('.sr_one').mouseover(function(){
		$(this).css('background','url(../images/one_unit_bg2.jpg) no-repeat right bottom');
	});
	$('.sr_one').mouseout(function(){
		$(this).css('background','url(../images/one_unit_bg.jpg) no-repeat right bottom');
	});
	
	$('.sr_one .links').mouseover(function(){
		$(this).siblings('.pvw_data').css({border: '1px solid #C862FF', background: '#F2D9FF'});
	});
	$('.sr_one .links').mouseout(function(){
		$(this).siblings('.pvw_data').css({border: '1px solid #F2D9FF', background: 'none'});
	});
});
