// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function($){
	$('a.cryptIt').css('cursor', 'pointer');
	$('a.cryptIt').bind('click', function(){
		if($(this).attr('rel') != ''){
			window.location.href = $(this).attr('rel');
		}else{
			window.location.href = $(this).attr('id');
		}
	});
})
