$(function(){
	$(".gallery a").colorbox({rel:'a',minWidth:500});
	//$('#banner').tinycarousel({ pager: true, interval: true });
	$('#carousel').tinycarousel({interval: true});
	
	$('input[type="text"], textarea').each(function() {
		var default_value = this.value;
		$(this).focus(function(e, j) {
			if(this.value == default_value){
				this.value = '';
			} 
		}).blur(function() {
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});

})
