/* Social Icons on the left */
function set_social(_title, _link) {

	// this sets the "off" state
	jQuery(".social img").css("opacity", 1.0);
	jQuery(".submit-button").css("opacity", 1.0);
		
	// this adds hover to full opacity:
	jQuery(".social img").hover( 
		// hover state
		function() {
			jQuery(this).css("opacity", 0.2);
		
		},
		// back to off
		function() {
		
			jQuery(this).css("opacity", 1.0);
		
		});
	
	jQuery(".submit-button").hover( 
		// hover state
		function() {
			jQuery(this).css("opacity", 0.5);
		
		},
		// back to off
		function() {
		
			jQuery(this).css("opacity", 1.0);
		
		});	
	
	
}


jQuery(document).ready(function(){
	
	// set the links to this site:
	set_social(document.title, document.location);

});

