var j = jQuery.noConflict();

j(document).ready(function() {
	if(document.body.className == 'directions') {
		var $directions = j('div#info');
		$directions.hide();
		
		j('a#dir').click(function() {
			$directions.animate({opacity: 'toggle'}, 'slow');
		return false;
		});
	}
	
	if(document.body.className == 'news') {
		j('#postArea .posts:last-child').css('border-bottom', 'none');
	}
	
	/* call twitter jquery plugin */
	j("<div id='tweet'></div>").hide().appendTo("#twitter")
	.lastTwitterMessage('irishmusicfest');
});

j(document).ready(function() {
    j('.slideshow').cycle({
		fx: 'fade',
		timeOut: 1000,
		speed: 1000
	});
});

