function photo_switch(type) {
	if(type == 'photo_url') {
		$('#photo_url').show();
		$('#photo_upload').hide();
	} else {
		$('#photo_url').hide();
		$('#photo_upload').show();
	}			
	$('#photo_type').val(type);
}

if(current_act == 'user/login' || current_act == 'user/register' || current_act == 'user/edit') {
	$().ready(function() {
		$('#photo_type_url').click(function(){
			photo_switch('photo_url');
			return false;
		});
		$('#photo_type_upload').click(function(event){
			photo_switch('photo_upload');
			return false;
		});
	});
} else if(current_act == 'user/space') {
	$().ready(function() {
		$('#favvideo').click(function() {
			$('#favplaylist_content').hide();
			$('#favvideo_content').show();
			$('#favvideo').addClass('viewtypeon');
			$('#favplaylist').removeClass();
			return false;
		});
		
		$('#favplaylist').click(function() {
			$('#favplaylist_content').show();
			$('#favvideo_content').hide();
			$('#favvideo').removeClass();
			$('#favplaylist').addClass('viewtypeon');
			return false;
		});
		
		$('#playlist_hot').click(function() {
			$('#playlist_new_content').hide();
			$('#playlist_hot_content').show();
			$('#playlist_hot').addClass('viewtypeon');
			$('#playlist_new').removeClass();
			return false;
		});
		
		$('#playlist_new').click(function() {
			$('#playlist_new_content').show();
			$('#playlist_hot_content').hide();
			$('#playlist_hot').removeClass();
			$('#playlist_new').addClass('viewtypeon');
			return false;
		});
	});
}
