// JavaScript Document

$(function() {
    $('.rollover').hover(function() {
        $(this).attr('src', $(this).attr('hover'));
    }, function() {
        $(this).attr('src', $(this).attr('init'));
    });


    $('.rollover').focus(function() {
        $(this).attr('src', $(this).attr('hover'));
    });
	
    $('.rollover').blur(function() {
        $(this).attr('src', $(this).attr('init'));
    });


});



$(document).bind("contextmenu",function(e){
	return false;
});

$(function() {
   $('div.content a.zoom').lightBox({txtImage: "", txtOf: "/"});
});



