﻿$(function() {
    if ($("#bigpics").length){
		$('#bigpics').cycle({
		    fx : 'fade',
		    speed : '2000',
		    timeout : '2000'
		});
    }

    if ($("#accordion").length){
	    $('#accordion').accordion({ 
	        active: '.selected', 
			alwaysOpen: false,
	    	collapsible : true,
	    	autoheight : false,
	        header: "dt"
	    })
    }

   	$('a[@rel$="external"]').addClass("external").click(function(){ this.target = "_blank"; });

});
