	$(function(){
		var     menu = $('#menu'),
			menuimg = $('#menu ul li img');
                        boximg = $('.box a img');
                        adimg = $('#full a img');
                        rowimg = $('.rowcell a img');
                        galeriaimg = $('#galeria a img');

                $(menuimg).hover(function() {
                        $(this).attr("src", $(this).attr("src").split(".").join("o."));
                }, function() {
                      $(this).stop(true,false); // prevents the creation of stacked actions
                      $(this).attr("src", $(this).attr("src").split("o.").join("."));
                });		

                $(boximg).hover(function() {
                      $(this).css("opacity","1")
                                .css("cursor","url(../gfx/zoom.cur), url(./gfx/zoom.cur),pointer");
                }, function() {
                      $(this).stop(true,false);
                      $(this).css("opacity", "0.7");
                });

                $(adimg).hover(function() {
                      $(this).css("opacity","1")
                            .css("cursor","url(../gfx/zoom.cur), url(./gfx/zoom.cur),pointer");
                }, function() {
                      $(this).stop(true,false);
                      $(this).css("opacity", "0.7");
                });


                $(galeriaimg).hover(function() {
                      $(this).css("opacity","1")
                            .css("cursor","url(../gfx/zoom.cur), url(./gfx/zoom.cur),pointer");
                }, function() {
                      $(this).stop(true,false);
                      $(this).css("opacity", "0.7");
                });
               
               $(rowimg).hover(function() {
                      $(this).css("opacity","1");
                }, function() {
                      $(this).stop(true,false);
                      $(this).css("opacity", "0.7");
                });

                
                $(function() {
                    $('.lightbox a').lightBox();
                });                
                

	});