/*
 * Copyright (c) plynwrk
 * http://plynwrk.com
 *
 * $Date: 2010-02-02
*/

$(function(){
	//easing scroll setting
	$("a[href*='#']").easingScroll({
		easing: "easeInOutExpo",
		duration: 1000
	});
	
	// for IE6 display fixed
	$('#navi').exFixed();
	$('#side').exFixed();
	$('#footer').exFixed();
	
	var m='inf'; 
	var a='o@lt'; 
	var i='b'; 
	var l='c.net';
	$('#contactLink').attr('href', 'mailto:'+m+a+i+l);  

});



var target = "";

function jump(){

	var url = document.form1.select.options[document.form1.select.selectedIndex].value;

	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}
