/*------------------------------------------------------------------------------
	JS Functions
------------------------------------------------------------------------------*/	
$(document).ready( function() {
	
	// external links - setting height and width
	$("a[rel=external]").each(function() {
    $(this).click(function(){
    	window.open(this.href,"mywindow");
    	return false;
    });
	});
	
	if ($('.fadeNRotate').fadeNRotate) {
		$('.fadeNRotate').fadeNRotate({
			speed: 1000,
			timeout: 5000
		});
	}
	
}); /* document ready */
