//Rollover

$(function(){

	$('a img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
		}, function(){
        	if (!$(this).hasClass('currentPage')) {
        	$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
        }
   });
});


//Colorbox

$(document).ready(function(){
			$(".itemgroup").colorbox({rel:'itemgroup'});
});


