$(document).ready(function(){
	if( $('#sub-banner').length > 0 ) {
		$('#sub-banner').cycle({
			fx: 'fade',
			speed: 1500, 
			timeout: 8000
		});
	}
	$('#description').focus(function() {
		if( $(this).attr('value') == $(this).attr('alt') ) {
			$(this).attr('value','');
			$(this).attr('style','color:#333');

		}
	});
	$("a[rel*='external']").each(function() { 
		this.target = '_blank';
	});
});