$(document).ready(function() {
	$('#nav').onePageNav();
	$("a.viewlarger").fancybox({
		'speedIn':		300,
		'speedOut':	300,
		'overlayColor':	'#000',
		'overlayOpacity':	0.7
	});

	
	$('#section-2 a').hover(function(){
		$(this).find('.hover').stop().animate({ opacity: '1' }, 350, 'easeInOutQuad', function() { });
		}, function(){
		$(this).find('.hover').stop().animate({ opacity: '0' }, 350, 'easeInOutQuad',  function() { });
	});
	
	$('#section-3 .skill').hover(function(){
		$(this).find('.hover').stop().animate({ opacity: '1' }, 350, 'easeInOutQuad', function() { });
		$(this).find('h3').stop().animate({ 'padding-top' : '5px' }, 200, 'easeInOutQuad', function() { });
		}, function(){
		$(this).find('.hover').stop().animate({ opacity: '0' }, 350, 'easeInOutQuad',  function() { });
		$(this).find('h3').stop().animate({ 'padding-top' : '10px' }, 200, 'easeInOutQuad', function() { });
	});
	
	
	$('.textform').focus(function() {
		$('.textform').each(function(){ if ($(this).attr('value')==''){  $(this).attr('value', 'Enter your ' + $(this).attr('id').replace(/_/gi,' ')+'...');  } });
		if (this.value.substr(this.value.length-3,3) == '...') {this.value=''; }
	});
	$('.textform').blur(function() {
		if ($(this).attr('value')==''){ $(this).attr('value', $(this).parent().parent().find('label').html()+'');}
	});

});
