/*
$(".service-image").hover(
  function () {
    $(this).fadeTo("slow", 0.33);
  },
  function () {
	  alert("out");
    $(this).fadeTo("slow", 0);
  }
);
*/

/*
$(document).ready(function(){

	$(".service-holder").mouseover(function() {
		$(this).find('.rollover').fadeTo("slow", 0.33);
	}).mouseout(function(){
	  	$(this).find('.rollover').fadeTo("slow", 0);
	});
	
});
*/

$(document).ready(function(){
$("img.service-image").hover(
function() {
$(this).stop().animate({"opacity": "0.6"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});
