$(document).ready(function(){
    
	$(".LMItem").hoverClass("hoverL");
	$(".RMItem").hoverClass("hoverR");
	$(".item").hoverClass("hover");
    $(".gallery a").lightBox();
	
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c); },
            function() { $(this).removeClass(c); }
        );
    });
};    
