
// Pop Up
// ----------------------------------------------------------------------- //

function openMap(src){
	window.open(src, "", "width=600, height=620, location=no, menubar=yes, resizable=no, scrollbars=no, status=no, titlebar=no, toolbar=yes, directories=no",false);
}



// Smooth Scroll
// ----------------------------------------------------------------------- //

$(function() {
	$('#content').localScroll({duration:400});
});




// Column
// ----------------------------------------------------------------------- //

$(function() {
	top_html = '<div class="top">&nbsp;</div>';
	bottom_html = '<div class="bottom">&nbsp;</div>';
	$('.columnjq').prepend(top_html);
	$('.columnjq').append(bottom_html);
});




// Image Fade
// ----------------------------------------------------------------------- //

$(function () {
  // IE6 doesn't handle the fade effect very well - so we'll stick with
  // the default non JavaScript version if that is the user's browser.
//  if ($.browser.msie && $.browser.version < 7) return;
	if ($.browser.msie && $.browser.version < 7) {
		$('#gNav').wrap('<div class="ie6"></div>');
	return;
	}
  
	$('#gNav li')
  
//    .removeClass('highlight')
    
	.find('a')
    
    .append('<span class="hover" />').each(function () {
      
		var $span = $('> span.hover', this).css('opacity', 0);
      
		$(this).hover(function () {
        // on hover
		$span.stop().fadeTo(250, 1);
      }, function () {
        // off hover
        $span.stop().fadeTo(800, 0);
      });

    });

});