$(document).ready(function(){

$("#guide").bind("change", function(e){
	if ($("#guide option:selected").val() != '') {
     	var guide_url = $("#guide option:selected").val();
     	window.open(guide_url);
		return false;
	}
    });
    
  $('#flashintro').flash(
      { src: 'flash/banner.swf',
        width: 507,
        height: 195}, 
      { version: '6.0.0' }
   );
  
   $('#slide_holder').agile_carousel({
      next_prev_buttons: "yes",
      intro_transtion: "fade",
      slide_directory: "slides",
      slide_doctype: "html",
      slide_buttons: "yes",
      transition_duration: 1000,
      transition_easing: "easeOutBack",
      transition_type: "carousel",
      timer_on: "no"
  
  });
  
});