// common.js

if(!csl) var csl = {}

var COOKIE_NAME = 'lnag_setting'

$(function(){

	$("a img[@src*='_out']").each(function(i) {
		var _out = this.src
		var _over =  _out.replace('_out.', '_over.')
		$(this).hover(  
			function(){this.src = _over},  
			function(){this.src = _out}
		)
	})

	$("label[for]").bind("click", function(){
		var _id = $(this).attr("for")
		$("#"+_id).focus()
	})

})

