/* 
Bandsintown scripts

Contents
- INPUT CLEAR
- TABLE HOVERS

/*  INPUT CLEAR
------------------------------------*/
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = "";
} 
function resetText(thefield){
	if (thefield.value=="")
	thefield.value = thefield.defaultValue;
} 

/*  TABLE HOVERS
------------------------------------*/
$(document).ready(function(){
	$('.service').hover( 
		function(){$(this).addClass('hover')}
		,
		function(){$(this).removeClass('hover')}
	);
	$('.shows tr:last td').css({'border' : '0'});
	$('.upcoming-shows-dashboard tr:last td').css({'border' : '0'});
	$('.recent_venue div.entry:last').css({'border' : '0'});
 });



