// JavaScript Document
$(function() {



/*slideshow */ 
$('#slideshow_box').crossSlide({
  sleep: 3,
  fade: 1,
}, [
  { src: '/images/img_slide_' + page_slide + '_1.jpg', },
  { src: '/images/img_slide_' + page_slide + '_2.jpg', },
  { src: '/images/img_slide_' + page_slide + '_3.jpg', }
])


	
/*menu */ 
$('.dropdown').each(function () {
	$(this).parent().eq(0).hoverIntent({
		timeout: 100,
		over: function () {
			var current = $('.dropdown:eq(0)', this);
			current.slideDown(100);
	},
	out: function () {
		var current = $('.dropdown:eq(0)', this);
		current.fadeOut(200);
	}
	});
});
$('.dropdown a').hover(function () {
	$(this).stop(true).animate({paddingLeft: '35px'}, {speed: 100, easing: 'easeOutBack'});
}, function () {
	$(this).stop(true).animate({paddingLeft: '0'}, {speed: 100, easing: 'easeOutBounce'});
});

}); 
