$(document).ready(function() {
	
	// ---  Start Input Box Interactivity   [not used]
	
	$('#edit-submitted-phone').each(function() {
			var default_value = this.value;
			$(this).focus(function() {
					if(this.value == default_value) {
							this.value = '';
					}
			});
			$(this).blur(function() {
					if(this.value == '') {
							this.value = default_value;
					}
			});
	});

//--- Makes seperate lines of links function as one

	$('.not-front .view-id-video .views-row').bind('mouseenter mouseleave', function() {
		$(this).toggleClass('hover');
	});

	$('.block').bind('mouseenter mouseleave', function() {
		$(this).toggleClass('hover');
	});
	$('.views-row').bind('mouseenter mouseleave', function() {
		$(this).toggleClass('hover');
	});


// --- Make links open in new window

	$(".view-folio-docs .filefield-file a").each(function() {
		$(this).attr("target", "_blank");
	});


});
