$(function(){
	// Section Icons
	$("#iconDox,#iconCode,#iconModules,#iconLogos").hover(function(){
		$(this).css({cursor:'pointer'}).find("span").css({color:'#52b1cc'});
	},
	function(){
		$(this).css({cursor:'auto'}).find("span").css({color:'#085c73'});
		
	})
	.click(function(e){
		var contentDiv = "#" + $(this).attr('id') + '-content';
		
		$.scrollTo(contentDiv, 750, {easing:'swing'});
	});
	
	// Back to Top link
	$("h2.sectionHeading").find("span").hover(function(){
		$(this).css({cursor:'pointer'}).css({color:'#c50c0c'});
	},
	function(){
		$(this).css({cursor:'auto'}).css({color:'#0c61c5'});
		
	})
	.click(function(e){
		var contentDiv = "#" + $(this).attr('id') + '-content';
		
		$.scrollTo('body', 750, {easing:'swing'});
	});
});
