window.addEvent('domready', function() {
	
	// Page Browser for Gallery View
	$$("ul.pages a").each(  function(a){
		a.addEvent("click", function(){ 
			var i;
			for (i=0; i<25; i++) {
				if (!$('pointer'+i)) {
					break;
				}
			}
			for (j=0; j<i; j++) {
				if ((j+1) > 9){
					//$('pointer'+j).addClass('twodigitspage');
				}
				if ('pointer'+j != (a.id)){
					$('pointer'+j).getParent().removeClass('active');
					$('news'+j).addClass('hide');
					$('news'+j).removeClass('show');
				}
				else {
					a.getParent().addClass('active');
					$('news'+j).addClass('show');
					$('news'+j).removeClass('hide');
				}
			}
		});
	});
	
	// Disable Right Click
	 $(document).addEvent('contextmenu',function(e) { 
		e.stop();
	});
	 
	// disable copy, ctrl+C
	$(document).addEvent('keydown', function(event){
		if (event.control && (event.key == 'c' || event.key == 'a' || event.key == 'u')){
			event.stop();
		}
	});

});
