$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='example1']").colorbox();

	/* inputbox */
	$("input[name=email_dl]").focus(function(){
		if($(this).val() == $(this).attr('defaultValue'))
		{
			$(this).val('');
		}
	});
	$("input[name=email_dl]").blur(function(){
		if($(this).val() == '')
		{
			$(this).val($(this).attr('defaultValue'));
		}
	});
});
