Cufon.replace("#header ul li a");

jQuery(document).ready(function() { 

	// $('a[rel*=facebox]').facebox();
	$('a[rel*=facebox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	
	$('#slideshow').cycle({ 
		delay:  0, 
		speed:  2000, 
		timeout: 3500,
		pause:  1 
	}); 
	

	var galleries = $('.ad-gallery').adGallery();
    $('#switch-effect').change(
      function() {
        galleries[0].settings.effect = $(this).val();
        return false;
      }
    );
    $('#toggle-slideshow').click(
      function() {
        galleries[0].slideshow.toggle();
        return false;
      }
    );


});

function submit_form(element) {
	
	$("#"+element).submit();

}