$(document).ready(function(){

//	$(".form").validate({
//		rules: {
//			field: {
//			  required: true,
//			  email: true,
//			  number: true
//			}
//		}
//	});

//	$('ul.cycle').cycle({
//		fx: 'fade'
//	});

	$(".sf-menu").superfish({ 
            animation: {height:'show'},   // slide-down effect without fade-in 
			speed:       'fast',                          // faster animation speed 
            delay:     100               // 1.0 second delay on mouseout 
        }); 
	
	$("#accordion").accordion({
			collapsible: true,
			autoHeight: false
		});

//	$('dl.gallery-item a').attr('rel','gallery');
//	$('dl.gallery-item a[rel="gallery"]').colorbox();

//	$('#movie').flash({
//		swf: '/wp-content/themes/bb/video/slider.swf',
//		height: 200,
//		width: 600
//	});

	$('a.top').click(function(){
	     $('html, body').animate({scrollTop: '0px'}, 300);
	     return false;
	});
	
});