
//  innerfade controll
function playInnerfade(){
	$('#head_img_set').innerfade({
		speed: 'slow',
		timeout: 3500,
		type: 'sequence',
		containerheight: '246px'
	});
}
function stopInnerfade(){
		$.innerfade.next = $.innerfade.stop;
}
function restartInnerfade(){
		$.innerfade.next = $.innerfade.start;
		playInnerfade();
}
