//var COL = jQuery.noConflict();

$(document).ready(function(){
	
	$('a').removeAttr('title');/* Firefox 3 */

});


$(function () {

	/* scroll to */
	$('.utility-scrollTo').click(function() {
		var t = $(this).attr('href');
		var o = $(t).offset().top;
	if ('body' == $(t).attr('tagName') || t == 'header' || $(this).hasClass('pagetop')) { o = 0; }
		
		$(this).blur();
		$('html, body').animate({ scrollTop: o }, 'slow', 'swing');
		return false;
	});
	/* end scroll to */

	/* new window */
	$('.target-blank').click(function() {
		var t = $(this).attr('href');
		window.open(t, null);
		return false;
	});
	/* end new window */
	
});
