$(document).ready(function(){
	$('.cycle').cycle();
	$('.hide').hide();
	$('a[rel="external"]').attr('target','_blank');
	$('.col:first-child, .group:first-child, ul li:first-child').addClass('first-child');
	$('.col:last-child, .group:last-child, ul li:last-child').addClass('last-child');
	
	$('#global-nav a').not('#global-nav a.active').mouseover(function(){
		$(this).hide().fadeIn();
	});
	
	$('.frame.left').wrap(function() {
	  return '<div class="frame left" style="width:'+$(this).attr('width')+'px; height:'+$(this).attr('height')+'px"><span class="frame-image"></span><span class="frame-top-left"></span<span class="frame-bottom-right"></span>' + $(this).html() + '</div>';
	});
	$('.frame.right').wrap(function() {
	  return '<div class="frame right" style="width:'+$(this).attr('width')+'px; height:'+$(this).attr('height')+'px"><span class="frame-image"></span><span class="frame-bottom-left"></span><span class="frame-top-right"></span>' + $(this).html() + '</div>';
	});
	
	$('.frame.full').wrap(function() {
	  return '<div class="frame right" style="float:left; width:'+$(this).attr('width')+'px; height:'+$(this).attr('height')+'px"><span class="frame-image"></span><span class="frame-bottom-left"></span><span class="frame-top-right"></span><span class="frame-top-left"></span><span class="frame-bottom-right"></span>' + $(this).html() + '</div>';
	});
	
	$('#projects-and-programs .fill-bottom').parent().parent().css('margin-bottom', $('#projects-and-programs').height()-250+"px");

	
	$('input, textarea').focus(function(){
		$('input, textarea').css('color','#666');
		$(this).css('color','#000');
	})
	$('input#name').focus();
	
});

