/* jQuery.noConflict(); */
jQuery(document).ready(function($){
	// Place Functions Below this line

	// Forms
		$('input[type=text], input[type=password], textarea').jLabel();

		$('#mailingList').validate(
		{
			messages: {
				name: 		'Please provide your name',
				email: {
					required:	'Please provide an email address',
					email: 'Example: name@domain.com'
				}
			}
		});

	// rollover buttons
		$('button.rollover').hover(function(event) { $(this).addClass('over');}, function(event) { $(this).removeClass('over');});

	//HTML MARK UP
		$('#beavers').prepend('<em></em>');
	// External Links
		$('a[href^=http:], a[href^=https:]').not('[href*='+location.hostname+']').attr('target', '_blank');
		$('a[rel=external]').attr('target', '_blank');

// Place Functions Above this line
});

