// JavaScript Document

// IMAGE ROLLOVER
$(function(){
	$('a img').hover(function(){
	$(this).attr('src', $(this).attr('src').add('_off', '_on'));
	}, function(){
	if (!$(this).hasClass('currentPage')) {
	$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
	}
	});
});

// TAB
$(function() {
	$('#tab > ul').tabs({ fx: { height: 'show' , opacity: 'show' , duration: 'slow' } });
});

// PAGE TOP SCROLL
$(function(){
	$(".totop a").click(function(){
		$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
		return false;
	})
});
