jQuery(function($){			
	$.preload( '#cntNavigation img', {
	    	find:'.jpg',
	    	replace:'-on.jpg'
	});
	/*		or
	$('#rollover-images img').preload({
		find:'.jpg',
	    replace:'-on.jpg'
	});
	*/
	//add animation
	$('#cntNavigation img').hover(function(){
		if (this.className == 'rollover') {
			this.src = this.src.replace('.jpg','-on.jpg');	
		}
	},function(){
		if (this.className == 'rollover') {
			this.src = this.src.replace('-on','');
		}
	});
});


$(function() {
	$('a[rel=privPolicy]').click(function() {
		$.jqURL.loc("privacypolicy.html", {w:400,h:400,wintype:'_blank'}); 
	});
});

$(function() {
	$('a[rel=tos]').click(function() {
		$.jqURL.loc("tos.html", {w:400,h:400,wintype:'_blank'}); 
	});
});

$(function() {
	$('a[rel=intelPropNotice]').click(function() {
		$.jqURL.loc("ip.html", {w:400,h:400,wintype:'_blank'}); 
	});
});

$(function() {
	$('a[rel=softwareLicense]').click(function() {
		$.jqURL.loc("softwarelicense.html", {w:400,h:400,wintype:'_blank'}); 
	});
});