$(document).ready(function(){

	/*EXTERNAL LINKS start ***********************************************************/
	$('a[@rel$="external"]').click(function(){
		this.target = "_blank";
	});	
	/*EXTERNAL LINKS end *************************************************************/
	
	/* SLIDESHOW start **************************************************************/
	setInterval( "slideSwitch()", 4000 );
	/* SLIDESHOW end ****************************************************************/
	
	/* EXTRA FORM start *************************************************************/
	$('#ExtraForm select, #ExtraForm input[@type="text"],textarea').addClass('text');
	$('#ExtraForm input[@type="radio"]').addClass('radio');
	$('#ExtraForm input[@type="checkbox"]').addClass('checkbox');
	/* EXTRA FORM end ***************************************************************/

});


/* SLIDESHOW function start *********************************************************/
function slideSwitch() {
	var $active = $('#slideshow a.active');

	if ( $active.length == 0 ) $active = $('#slideshow a:last');

	var $next =  $active.next().length ? $active.next()
			: $('#slideshow a:first');

	$active.addClass('last-active');

	$next.css({opacity: 0.0})
			.addClass('active')
			.animate({opacity: 1.0}, 1000, function() {
			 $active.removeClass('active last-active');
	});
}
/* SLIDESHOW function end ***********************************************************/	