jQuery.noConflict();

jQuery(window).load(function() {
	jQuery("#keyword").toggleVal({
		populateFrom: "label",
		removeLabels: true
	});

	if ( jQuery('#wrapper').height() < jQuery(window).height() ) { 
	
/*		var _newheight = jQuery(document).height() - (jQuery('#header').height() + 10);
		
		jQuery('#wrapper').height( _newheight );							
	
		jQuery('#sidebar').height( _newheight );*/

		var _newheight = jQuery(window).height();

		jQuery('#sidebar').height(_newheight);
		jQuery('#content').height(_newheight);
		
	} else {
	
		jQuery('#sidebar').height ( jQuery('#content').height());
	
	}

	jQuery('#send-to-a-colleague').bind('click', function (e) {
		
		window.open ('/index/utils-emailafriend-form?url=' + document.location, 'EmailAFriend', 'left=50,top=50,width=400,height=400,resize=yes')

		return false;

	} );

	jQuery(".breadcrumb .incentives,.breadcrumb .infrastructure,.breadcrumb .strategic-partners,.breadcrumb .can-i-run-my-business-in-paradise,.breadcrumb .about-the-us-virginislands,.breadcrumb .your-comments").bind ( "click", function(e){ return false; } );

});