
	$(document).ready(function(){
		$("#footer ul li img").fadeTo("fast", 0.5); // This sets the opacity of the thumbs to fade down to 60% when the page loads
		$("#footer ul li img").hover(function(){
			$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
		},function(){
			$(this).fadeTo("fast", 0.5); // This should set the opacity back to 60% on mouseout
		});
	});


    getTwitters('ixels-tweets', {
        id: '6ixels', 
       // prefix: '<img height="16" width="16" src="%profile_image_url%" /><a href="http://twitter.com/%screen_name%">%name%</a> said: ', 
        clearContents: false, // leave the original message in place
        count: 1, 
        withFriends: true,
        ignoreReplies: false,
        newwindow: true
    });

