$(document).ready(function() {	
	//bg animate
	$('#bgSlider').bgSlider({
		duration:1000,
		pagination:'.pagination',
		preload:true,
		spinner:'.bg_spinner'
	})
	//menu
	$('nav ul.level_1').superfish({
      delay:       600,
      animation:   {opacity:'show', height:'show'},
      speed:       400,
      autoArrows:  false,
      dropShadows: false
    });
	$('.list2 li a').hover(function(){
		$(this).stop().animate({paddingLeft:'20'},400)
	},function(){
		$(this).stop().animate({paddingLeft:'11'},400)
	});
})

