$(document).ready(function(){
	$('html').addClass('js');
	$('.fadeinBannerTxt img').each(function(i){
		var xy = $(this).attr('rel').split(',');
		$(this).css({'top':parseInt(xy[1]),'position':'absolute'}).animate({'marginLeft':parseInt(xy[0])},(i+1)*1600);
	});
	
	$('#nav_main li').each(function(){
		var pg = window.location.href.split('/').pop();
		if(pg == $('a',this).attr('href'))
			$(this).addClass('current');
	});
});


