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


	$('.target-blank').click(function() {
		var t = $(this).attr('href');
		window.open(t, null);
		return false;
	});
/*
	$('#footer .footer-display-menu').css('cursor', 'pointer').click(function(){
		$('#footer-link').slideToggle('slow');
		return false;
	});
*/
});


function openWin_pop01(url, winName) {
	wx = 510;
	wy = 440;
	x = (screen.width - wx) / 2;
	y = (screen.height - wy) / 2 - 40;
	window.open(url,winName,"resizable=1,scrollbars=1,status=1,toolbar=no,left="+x+",top="+y+",width="+wx+",height="+wy);
}

/*
$(document).ready(function() {
     $('.hover').hover(function()
     {
     $(this).children("a").animate( { marginLeft: "7px" }, 200  );
     },
     function()
     {
        $(this).children("a").animate( { marginLeft: "0px" }, 200  );
     });
});*/
