$(document).ready(function(){
						   $(".iconLeft").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".iconLeft").hover(function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
						   });
						   });


$(document).ready(function(){
						   $(".socialMedia").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".socialMedia").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   });
						   
$(document).ready(function(){
						   $(".footerColumn p").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".footerColumn p").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.5); // This should set the opacity back to 30% on mouseout
							   	});
						   });
						   
$(document).ready(function(){
						   $(".work").fadeTo("slow", 0.9); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".work").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.4); // This should set the opacity back to 30% on mouseout
							   	});
						   });


$(function () {
	 $('a').click(function () {
		var thisel = $(this);
		try
		{
			_gaq.push(['_trackEvent', thisel.parents('[id!=""]:first').get(0).id, 'clicked', (thisel.text() || thisel.children('img:first').attr('alt'))]);
		}
		catch (err) {}
	});
});