/* ------------------------------------------------------- */

/* common.js

/* ------------------------------------------------------- */


/* popup window
-----------------------------------------------------------*/
function openWindow(url, name, width, height){
	var w = window.open(url, name, 'scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,width=' + width + ',height=' + height);
	w.focus();
}


/* swap image
-----------------------------------------------------------*/
$(function() {
	swapImage.init();
});


/* easing page scroll
-----------------------------------------------------------*/
$(function() {
	$("a[href*='#']").easingScroll({
		easing: 'easeOutCubic',
		duration: 1000
	});
});

