$(document).ready(function() {

jQuery('#info').accordion({header: 'div.title',active: 3,
alwaysOpen: false,autoHeight: true});

jQuery('#pressarchive').accordion({header: 'div.title',active: false,
alwaysOpen: false,autoHeight: true});

jQuery('#presscontact').accordion({header: 'div.title1',active: 1,
alwaysOpen: false,autoHeight: true});


});

      $(function() {        $('#contactForm').submit(function() {          var inputs = [];          $(':input', this).each(function() {            inputs.push(this.name + '=' + escape(this.value));          })          jQuery.ajax({            data: inputs.join('&'),            url: this.action,            timeout: 2000,            error: function() {              console.log("Failed to submit");            },            success: function(r) {               alert(r);
              document.contactForm.reset();
            }          })           return false;        })      })


$(document).ready(function() {

	$("div#bts a").fancybox({
		'overlayShow':	true,
		'hideOnContentClick': true		
	});

	$("a.lightbox").fancybox({
		'overlayShow':	true,
		'hideOnContentClick': true		
	});
	
	$("a.vid").fancybox({
		'overlayShow':	true,
		'hideOnContentClick': false,
		'frameHeight': 396,
		'frameWidth': 500
	});

});

$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade'
	});
});


