/**
 * This is a simple homepage Rollover script.
 * @author Michael Trollan mtrollan@iconnicholson.com
 */

$(document).ready(function() {
	$("#main ul li").fadeTo("fast", 0.7); // This sets the opacity of the photos to fade down to 70% in IE when the page loads

	$("#main ul li").hover(function(){
		$(this).fadeTo("fast", 1.0); // This sets the opacity to 100% on hover
	},function(){
		$(this).fadeTo("fast", 0.7); // This sets the opacity back to 60% on mouseout
	});
});