//<![CDATA[
/*
*** Common scripts
*/

jQuery(function($){

	$(document).ready(function(){
	
		//Modify input field of newsletter subscribe module
		$('#sidebar form[name=communicatorMod]').each(function(){
			label = $('label[for=subscriber_email]', this).text();
			$('input[name=subscriber_email] ', this).val(label);
			var defaultVal = label;
			$('input[name=subscriber_email] ', this).click(function(){
				if($(this).val() == defaultVal) $(this).val('');
			});
			$('input[name=subscriber_email] ', this).blur(function(){
				if($(this).val() == '') $(this).val(defaultVal);
			});
		});
			
		//script to look for slimboxed images
		$('img.caption').each(function(){
			$(this).wrap('<a href="'+this.src+'" rel="lightbox-imgs"></a>');
		});

	});

});

//]]>
