$(document).ready(function(){
	// form styling
	$('input[type=text], .gmapTextBox').addClass('input');
	$('input[type=submit],[type=reset]').addClass('button');
	
	// font scaler w/ cookie enabled
	$('#ctrl-larger').fontscale('#border','up',{
		unit:'percent',
		increment:25
	});
	$('#ctrl-smaller').fontscale('#border','down',{
		unit:'percent',
		increment:25,
		useCookie:true
	});
	$('#ctrl-reset').fontscale('#border','reset');
	
	// hover glow on social buttons
	var $timing = 300;
	$('#social a').append('<span></span>');
	$('#social a span').css('opacity','0');
	$('#social a').hover(
		function() { $(this).find('span').stop().animate({opacity:'0.3'},$timing);},
		function() { $(this).find('span').stop().animate({opacity:'0'},$timing);
	});
});
