/*
==============================================================================
	Interface elements for jQuery
==============================================================================
*/

jQuery(document).ready(function($) {
	$(function() {
		/*
		---------------------------------------------
			scrollTo
		---------------------------------------------
		*/

		$('#gototop a').click(function(){
			$.scrollTo( $('body'), {speed:600,axis:'y', queue:true} );
			return false;
		});

		/*
		---------------------------------------------
			lightbox
		---------------------------------------------
		*/
		
		$('.lightbox a').lightBox();
	});
});