$(document).ready(function() {
	$("div.header_resize").mouseover(function() {
		$(this).animate({ height: "250px" }, { queue: false, duration: 350 });
	}).mouseout(function() {
		$(this).animate({ height: "90px" }, { queue: false, duration: 350 });
	});

//	$(".scrollable-1").scrollable({
//		prev: '.scroll-prev-1',
//		next: '.scroll-next-1'
//	});
	$(".scrollable-2").scrollable({
		prev: '.scroll-prev-2',
		next: '.scroll-next-2',
		circular: true,
		speed: 650
	}).autoscroll({
		interval: 4000
	});
});
