
$(document).ready(function(){
	$("a[rel='modal']").colorbox();
	$(".link").hover(
		function () {
			$(this).attr('src', 'images/' + $(this).attr('id') + '_over.jpg');
		}, 
		function () {
			$(this).attr('src', 'images/' + $(this).attr('id') + '.jpg');
		}
	);
});
