// set up behaviours
$(function(){
	$('.panelright, .rounded').corner('10px');
	/*$('.contentleft h2, .contentwide h2').corner('7px');*/
	$('.popup').click(function(){ 
					window.open(this.href, 
								'_blank',
								'scrollbars=yes,resizable=yes,location=no,width=800,height=650');
					return false;
				});
	$('.popupgallery').click(function(){ 
					window.open(this.href, 
								'_blank',
								'scrollbars=yes,resizable=yes,location=no,width=950,height=800');
					return false;
				});
	$('#joinbutton').click(function(){
							return false;					
					});
	$('#emailfield').focus(function(){ 
							$(this).attr('value','');
					});
	
});
