﻿$(function() {
    if ($("#bigpics").length){
		$('#bigpics').cycle({
		    fx : 'fade',
		    speed : '2000',
		    timeout : '2000'
		});
    }

    if ($(".rotator").length){
		$('.rotator').cycle({
		    speed : 1,
		    cleartype:  1,
		    timeout : '8000'
		});
    }


    if ($("#accordion").length){
	    $('#accordion').accordion({ 
	        active: '.selected', 
	        header: "dt"
	    })
    }

   	$('a[@rel$="external"]').addClass("external").click(function(){ this.target = "_blank"; });

	$('#searchbutt').click( function(e){
		$('#searchbox').submit();
		e.preventDefault();
		return false;
	});
});
