xpngFix();

(function ($){

$.noConflict();

$(document).ready(function(){
		//bind scrollShow plugin
		$('#serial-scroll').serialScroll({
			items: 'a',
			prev: '#arrow-left',
			next: '#arrow-right',
			axis: 'x',
			cycle: false,
			start: 1,
			duration: 500,
			offset: -100,
			jump: true
		}).find('a').tinyLightbox();
		//navi dropdown
		$('.navi-large').hover(
			function(){
				$(this).children('.subnavi:not(.active)').show('slow');
			},
			function(){
				$(this).children('.subnavi:not(.active)').hide('slow');
			}
		);
		$('.scroll-pane').jScrollPane({showArrows:true, scrollbarWidth: 7, arrowSize: 8});

		

});

})(jQuery);