(function($) {
	function init() {
	$("#transitionEffect").fadeTransition({pauseTime: 4000,
                                           transitionTime: 1000,
                                           ignore: "#introslide",
                                           delayStart: 4000,
                                           manualNavigation: false,
                                           pauseOnMouseOver: true,
                                           createNavButtons: true});
			}
        
			$(document).ready(init);
		})(jQuery);

		$(document).ready(function(){
						   $(".img").hover(function(){
						   $(this).fadeTo("slow", 0.75); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1); // This should set the opacity back to 30% on mouseout
						   });
						   });
        

