/* runaroo javascript
 * (c) 2010
 * http://blendfresh.net
 */


$(document).ready(function() {

	$('.feature').lightBox({fixedNavigation:true});

	
    $("input#clubname").bind("focus blur", function(e) {
	if(e.type == "focus") {
	    
	    $(this).css('color', '#000');
	    $(this).val('');
	    
	} else {
	    
	    if($(this).val() == "") {
		
		$(this).css('color', '#E0E0E0');
		$(this).val('Enter the name of your club');
		
	    }
	}
    });
});
