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

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

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

});

