$(document).ready(function(){

	$(document).bind("contextmenu",function(e){
		alert('All content and images are copyright © Plant Connection, Inc. All rights reserved.');
		return false;
	});

	$('.msgok').each(coolReveal);
	$('.msgerror').each(coolReveal);

	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});

	$('div.extras div.sublinks').hide().each(function() {
		$(this).prev().click(function(){
			$(this).next().slideToggle();
			this.blur();
			return false;
		});
	});

	$('div.extras div.expandsublinks').show();

	$('div.galleryitemphotos a').lightBox();

	$('div.homebox a.homeinset').lightBox();
});

function coolReveal()
{
	$(this).hide();
	$(this).slideDown('slow');
}


