$(document).ready(function() {
	$('.mast').cycle();
	
	$('h3').each(function() {
		if($(this).html() == 'Terms and Conditions') {
			$(this).attr('id','terms');
		}
	});
	
$("a[rel^='external']").click(function(){
   window.open(this.href);
   return false; 
});	
	
});




