$(document).ready(function() {
	
	$('input[type="button"], input[type="submit"]').each(function() {
		$(this).fancyButton({
			prefix: ($(this).hasClass('small'))?'small':'fb'
		});
	});
	
	$('#username').focus();
	
	$('.popup').fancybox({
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'			: false,
		'type'				: 'iframe'
	});
	
	$('.popupMedium').fancybox({
		'width'				: '50%',
		'height'			: '60%',
		'autoScale'			: false,
		'type'				: 'iframe'
	});
	
	$('.popupSmall').fancybox({
		'width'				: '40%',
		'height'			: '35%',
		'autoScale'			: false,
		'type'				: 'iframe'
	});
	
	$('.popupImg').fancybox({
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'			: true
	});
	
	/*
	// set external links
	$('a').each(function() {
		if ($(this).attr('rel') == 'external') {
			$(this).target = '_blank';
		}
	});*/
	
});
