/* closs slide */
$(function() {
$('#vph').crossSlide({
  sleep: 4,
  fade: 2
}, [
  { src: 'images/index_mph001.jpg' },
  { src: 'images/index_mph002.jpg' },
  { src: 'images/index_mph003.jpg' },
  { src: 'images/index_mph004.jpg' },
  { src: 'images/index_mph005.jpg' },
  { src: 'images/index_mph006.jpg' },
  { src: 'images/index_mph007.jpg' }
]);
});


/* smooth scroll*/
$(document).ready(function() {  
$('a[href*=#]').click(function() {  
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')  
&& location.hostname == this.hostname) {  
var $target = $(this.hash);  
$target = $target.length && $target  
|| $('[name=' + this.hash.slice(1) +']');  
if ($target.length) {  
var targetOffset = $target.offset().top;  
$('html,body')  
.animate({scrollTop: targetOffset}, 500);  
return false;  
}  
}  
});  
}); 
