
/**
 *  Author: BigNoise, Inc.
 */

$(document).ready(function(){
	$(function(){
		$('a[rel*=leanModal]').siteopsModal({ top : 0, overlay : 0.9 }) ;
	}) ;
	$('.modal-video-click').click(function(){
		var params = $(this).attr('rel') ;
		$.get('/modal-video.php?'+params, function(d){
			$('#modal-video').html(d) ;
			$('#modal-video-click').click() ;
		}) ;
	}) ;
	
	$('#accordion h3').click(function() {
		$(this).next().toggle(200) ;
		$(this).toggleClass('active') ;
		return false;
	}).next().hide() ;
	
}) ;


