$(document).ready(function($){
	
	//Enable external links
	$('a[href^="http://"], a[href^="https://"]').attr('target','_blank');
	
	//Setup form field with default value
	$('input[type=text]').attr('value', function(){
		var title = $(this).attr('title');
		return title;
	}).focus(function(){
		if( $(this).val() != '' && $(this).val() == $(this).attr('title'))
			$(this).val('');
	}).blur(function(){
		if( $(this).val() == '')
			var value = $(this).attr('title');
			$(this).attr('value', value);
	});
	
	$('#rotate').cycle({
		fx: 'fade',
		speed:300,
		timeout:8000,
		pager: '#pager div',
		prev: '#prev',
		next: '#next'
	});
	
	$('a[rel="colorbox"]').colorbox({maxWidth:'80%', maxHeight:'80%', photo:true});
	
	$('#nav li,#branding #nav-sub li').hover(function(){
		$(this).addClass('hover');
	}, function(){
		$(this).removeClass('hover');
	});
	
});
