$(document).ready(function() {
	$origColor = $('.info-box p').css('color');
	$origBG = $('.info-box p').css('background-color');
	$origH3 = $('.info-box h3').css('color');
	$origH1 = $('.info-box h1').css('color');
	$bg 	= $('#color-wrapper').css('background-color');
	
	$('.info-box').hover(function() {
		$(this).find('h3').css({ 'color' : '#FFF34A' });
		$(this).find('h1').css({ 'color' : $bg });
		Cufon.replace('.cufon-font');
		$(this).css({backgroundColor: '#5a5a5a', color: '#fff'});
		//$(this).css({ 'background-color' : '#5a5a5a' });
		
	}, function() {
		$(this).css({ 'background-color' : $origBG, color: $origColor });
		$(this).find('h3').css({ 'color' : $origH3 });
		$(this).find('h1').css({ 'color' : $origH1 });
		Cufon.replace('.cufon-font');
	});
	
	$resOrigColor = $('.resources-box p').css('color');
	$resOrigBG = $('.resources-box p').css('background-color');
	$resBg 	= $('#color-wrapper').css('background-color');
	
	$('.resources-box').hover(function() {
		Cufon.replace('.cufon-font');
		$(this).css({backgroundColor: '#231f20', color: '#fff'});
		//$(this).css({ 'background-color' : '#5a5a5a' });
		
	}, function() {
		$(this).css({ 'background-color' : $resOrigBG, color: $resOrigColor });
		Cufon.replace('.cufon-font');
	});
});



	

