// JavaScript Document
jQuery.fn.bodyLinks = function() {
	//alert("activation of weddingLinks");
  	$(".rollOverLink").css("opacity","0");
  
 	$(".rollOverLink").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
								opacity: 1
								}, 300);
		},function () {
		$(this).stop().animate({
								opacity: 0
								}, 300);
	});

};
