jQuery(document).ready(function() {
	$('.navigation ul.menu').supersubs({ 
		minWidth:    13,
		maxWidth:    30,
		extraWidth:  2     
	}).superfish({ hoverClass: "sfHover", speed: 'slow', dropShadows: false, delay: 0, animation: {height:'show'}});
	$('.navigation ul.menu>li>ul>li a, .navigation ul.menu>li>ul>li>ul>li a').hover(function() { //mouse in
		$(this).stop().animate({ paddingLeft: '25px' }, 200);
	}, function() { //mouse out
	$(this).stop().animate({ paddingLeft: '15px' }, 200);
	});
	jQuery(".tabs .tab_wrap").tabs({ 
		fx: { opacity: 'toggle', duration: 200} 
	});
	$( "#accordion" ).accordion({ header: '.title' });
	$(".toggle .title").toggle(function(){
		$(this).addClass("toggled").closest('.toggle').find('.inner').css({'display':'block'});
		}, function () {
		$(this).removeClass("toggled").closest('.toggle').find('.inner').css({'display':'none'});
	});
	$("a[rel^='prettyPhoto'], a[href$=jpg], a[href$=png], a[href$=gif], a[href$=jpeg]").prettyPhoto({ "slideshow": 5000, "overlay_gallery": false, "deeplinking": false, "show_title": false });
	$('a[href$="bodytop"]').click( function(s) {
		$.scrollTo( $('#bodytop'), {speed:1000}, {easing:'easeInQuad'} );
		s.preventDefault();
	});
});
